webview.vue 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. <template>
  2. <view class="webview-page">
  3. <web-view :src="url + '/html/index.html?url=' + src" v-if="src"></web-view>
  4. <cover-view class="cover-box">
  5. <button class="share-btn" @click="tokefu">
  6. <cover-image class="img-btn" src="../static/kefu.png" mode=""></cover-image>
  7. </button>
  8. <button class="share-btn" open-type="share">
  9. <cover-image class="img-btn" src="../static/share.png" mode=""></cover-image>
  10. </button>
  11. </cover-view>
  12. </view>
  13. </template>
  14. <script>
  15. import url from "../../common/url.js"
  16. export default {
  17. data() {
  18. return {
  19. src: '',
  20. url: url,
  21. id: '',
  22. type: '',
  23. worker_id: 0,
  24. worker_phone: '',
  25. worker_hx_username: ''
  26. }
  27. },
  28. onLoad(option) {
  29. // console.log(option)
  30. this.src = encodeURIComponent(option.url)
  31. this.id = option.id
  32. this.type = option.type
  33. },
  34. onShow() {
  35. this.getuser()
  36. },
  37. onShareAppMessage() {
  38. if (this.type == 1) {
  39. return {
  40. path: '/pagesA/index/rizhao?id=' + this.id
  41. }
  42. } else {
  43. return {
  44. path: '/pagesA/index/yifang?id=' + this.id
  45. }
  46. }
  47. },
  48. methods: {
  49. tokefu() {
  50. if (uni.getStorageSync("token")) {
  51. if (this.worker_id == 0) {
  52. uni.navigateTo({
  53. url: "/pagesA/index/kefu?id=" + this.id
  54. })
  55. } else {
  56. this.$u.post('/api/Member/consult_record', {
  57. type: 2
  58. })
  59. uni.navigateTo({
  60. url: "/pages/index/chat?hx_username=" + this.worker_hx_username + "&worker_id=" + this.worker_id
  61. })
  62. }
  63. } else {
  64. uni.navigateTo({
  65. url: "/pagesA/index/kefu?id=" + this.id
  66. })
  67. }
  68. },
  69. getuser() {
  70. this.$u.post('/api/Member/member_info').then(res => {
  71. this.worker_id = res.data.worker_id
  72. this.worker_phone = res.data.worker_phone
  73. this.worker_hx_username = res.data.worker_hx_username
  74. })
  75. },
  76. }
  77. }
  78. </script>
  79. <style lang="scss">
  80. .webview-page {
  81. height: 100vh;
  82. .cover-box {
  83. position: fixed;
  84. top: 240px;
  85. right: 10px;
  86. background-color: rgba(0, 0, 0, 0);
  87. z-index: 10;
  88. padding: 1px 5px;
  89. border-radius: 100px;
  90. }
  91. .share-btn {
  92. margin: 0;
  93. padding: 0;
  94. background-color: rgba(0, 0, 0, 0);
  95. border: none;
  96. line-height: 1;
  97. margin: 15px 0;
  98. width: 30px;
  99. height: 30px;
  100. .img-btn {
  101. width: 30px;
  102. height: 30px;
  103. opacity: 0;
  104. }
  105. }
  106. .share-btn::after {
  107. border: none;
  108. }
  109. }
  110. </style>