iframe-page.vue 1005 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. <template>
  2. <view class="iframe-content">
  3. <headContent statusBarBg="#191A2E" bgColor="#191A2E">
  4. <template #left>
  5. <reverse-back iconColor="#fff"/>
  6. </template>
  7. <template #content>
  8. <view class="haed-title">
  9. 在线客服
  10. </view>
  11. </template>
  12. <template #right>
  13. <closeIocn iconColor="#fff"/>
  14. </template>
  15. </headContent>
  16. <view class="iframe-box">
  17. <iframe
  18. src="https://app.chatra.live/index/index/home?visiter_id=&visiter_name=&avatar=&groupid=0&business_id=12"
  19. frameborder="0"></iframe>
  20. </view>
  21. </view>
  22. </template>
  23. <script>
  24. import closeIocn from "./../headModules/close.vue"
  25. export default {
  26. name: "iframe-page",
  27. components:{closeIocn},
  28. data() {
  29. return {
  30. };
  31. }
  32. }
  33. </script>
  34. <style lang="scss" scoped>
  35. .haed-title{
  36. color: #fff !important;
  37. }
  38. .iframe-content {
  39. width: 100%;
  40. height: 100vh;
  41. display: flex;
  42. flex-direction: column;
  43. .iframe-box {
  44. flex: 1;
  45. iframe {
  46. width: 100%;
  47. height: 100%;
  48. }
  49. }
  50. }
  51. </style>