kefu.vue 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. <template>
  2. <view class="kefu-page">
  3. <u-popup v-model="showlogin" mode="center" background="rgba(0,0,0,0)" @close="toback">
  4. <view class="tocall-box u-flex-col u-col-center">
  5. <image class="tocall-img" src="../../static/images/popup1-1.png" mode=""></image>
  6. <view class="u-flex-col u-col-center tocall-text">你目前处于未登录状态请前往登录</view>
  7. <view class="u-flex u-row-between tocall-btn">
  8. <text @click="showlogin = false">取消</text>
  9. <text @click="tologin">确定</text>
  10. </view>
  11. </view>
  12. </u-popup>
  13. <gf-chat ref="chatlist" @over="getuser" @close="toback" type="2"></gf-chat>
  14. </view>
  15. </template>
  16. <script>
  17. export default {
  18. data() {
  19. return {
  20. showlogin: false,
  21. id:''
  22. }
  23. },
  24. onLoad(option) {
  25. this.id = option.id
  26. if (uni.getStorageSync("token")) {
  27. this.$nextTick(() => {
  28. this.$refs.chatlist.open(this.id)
  29. })
  30. } else {
  31. this.showlogin = true
  32. }
  33. },
  34. methods: {
  35. getuser() {
  36. this.$u.post('/api/Member/member_info').then(res => {
  37. this.worker_id = res.data.worker_id
  38. this.worker_phone = res.data.worker_phone
  39. this.worker_hx_username = res.data.worker_hx_username
  40. })
  41. },
  42. tologin() {
  43. this.showlogin = false
  44. uni.navigateTo({
  45. url: "/pages/mine/login"
  46. })
  47. },
  48. toback() {
  49. uni.navigateBack()
  50. }
  51. }
  52. }
  53. </script>
  54. <style lang="scss">
  55. .kefu-page {
  56. .tocall-box {
  57. position: relative;
  58. .tocall-img {
  59. width: 650rpx;
  60. height: 476rpx;
  61. }
  62. .tocall-btn {
  63. position: absolute;
  64. bottom: 70rpx;
  65. left: 0;
  66. width: 100%;
  67. padding: 0 48rpx;
  68. text:first-child {
  69. width: 254rpx;
  70. line-height: 80rpx;
  71. background: #FFA120;
  72. border-radius: 20rpx;
  73. text-align: center;
  74. font-size: 34rpx;
  75. font-family: PingFangSC-Medium, PingFang SC;
  76. font-weight: 500;
  77. color: #FFFFFF;
  78. }
  79. text:last-child {
  80. width: 254rpx;
  81. line-height: 80rpx;
  82. background: #1F7EFF;
  83. border-radius: 20rpx;
  84. text-align: center;
  85. font-size: 34rpx;
  86. font-family: PingFangSC-Medium, PingFang SC;
  87. font-weight: 500;
  88. color: #FFFFFF;
  89. text-decoration: none;
  90. }
  91. }
  92. .tocall-text {
  93. text-align: center;
  94. font-size: 24rpx;
  95. font-family: PingFangSC-Regular, PingFang SC;
  96. font-weight: 400;
  97. color: #999999;
  98. position: absolute;
  99. top: 244rpx;
  100. left: 0;
  101. z-index: 10;
  102. width: 100%;
  103. }
  104. }
  105. }
  106. </style>