gf-chat.vue 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  1. <template>
  2. <view class="gf-chat">
  3. <u-popup v-model="showchatlist" mode="center" border-radius="20" :closeable="true" @close="close">
  4. <view class="chat-list">
  5. <view class="worker-hrader">
  6. <text>在线咨询</text>
  7. </view>
  8. <scroll-view scroll-y="true" style="height: 60vh;" v-if="worker_list.length > 0">
  9. <view class="worker-item u-flex" v-for="(item,index) in worker_list" :key="index" @click="tochat(item)">
  10. <image :src="item.headimg" class="img1" mode=""></image>
  11. <text class="text1 u-flex-1">{{item.name}}</text>
  12. <u-icon name="chat-fill" color="#1677FF" size="40"></u-icon>
  13. </view>
  14. </scroll-view>
  15. <view v-else style="height: 60vh;">
  16. <u-empty text="暂无数据" mode="list"></u-empty>
  17. </view>
  18. </view>
  19. </u-popup>
  20. </view>
  21. </template>
  22. <script>
  23. export default {
  24. props: {
  25. type: {
  26. type: String,
  27. default: "1"
  28. }
  29. },
  30. data() {
  31. return {
  32. id: '',
  33. showchatlist: false,
  34. worker_list: []
  35. }
  36. },
  37. created() {
  38. },
  39. methods: {
  40. close(e) {
  41. this.$emit('close')
  42. },
  43. tochat(item) {
  44. uni.showLoading({
  45. mask: true,
  46. title: "请稍后"
  47. })
  48. this.$u.post('/api/Member/bind_worker', {
  49. worker_id: item.id
  50. }).then(res => {
  51. if (res.code == 1) {
  52. if (this.type == 1) {
  53. this.showchatlist = false
  54. }
  55. this.$emit('over')
  56. this.$u.post('/api/Member/member_info').then(res => {
  57. if (this.type == 1) {
  58. uni.navigateTo({
  59. url: "/pages/index/chat?hx_username=" + res.data.worker_hx_username + "&worker_id=" + item.id
  60. })
  61. } else {
  62. uni.redirectTo({
  63. url: "/pages/index/chat?hx_username=" + res.data.worker_hx_username + "&worker_id=" + item.id
  64. })
  65. }
  66. })
  67. } else {
  68. this.$u.toast(res.msg)
  69. }
  70. })
  71. },
  72. getdata(type) {
  73. if (type == 2) {
  74. // 福利
  75. this.$u.post('/api/welfare/welfare_detail', {
  76. id: this.id
  77. }).then(res => {
  78. this.worker_list = res.data.worker_info
  79. this.showchatlist = true
  80. })
  81. } else {
  82. // 楼盘
  83. this.$u.post('/api/Property/property_detail', {
  84. id: this.id
  85. }).then(res => {
  86. this.worker_list = res.data.worker_info
  87. this.showchatlist = true
  88. })
  89. }
  90. },
  91. open(id, type) {
  92. this.id = id
  93. uni.showLoading({
  94. mask: true,
  95. title: "请稍后"
  96. })
  97. this.getdata(type)
  98. }
  99. }
  100. }
  101. </script>
  102. <style lang="scss">
  103. .gf-chat {
  104. .chat-list {
  105. width: 650rpx;
  106. background: #FFFFFF;
  107. padding: 1rpx 0;
  108. .worker-hrader {
  109. line-height: 88rpx;
  110. border-bottom: 2rpx solid #E5E5E5;
  111. padding: 0 24rpx;
  112. font-size: 28rpx;
  113. font-family: PingFangSC-Regular, PingFang SC;
  114. font-weight: 400;
  115. color: #333333;
  116. }
  117. .worker-item {
  118. margin: 24rpx auto;
  119. width: 602rpx;
  120. height: 140rpx;
  121. background: #F2F2F2;
  122. border-radius: 20rpx;
  123. padding: 0 20rpx;
  124. .img1 {
  125. width: 100rpx;
  126. height: 100rpx;
  127. border-radius: 100rpx;
  128. }
  129. .text1 {
  130. font-size: 28rpx;
  131. font-family: PingFangSC-Medium, PingFang SC;
  132. font-weight: 500;
  133. color: #333333;
  134. margin: 0 20rpx;
  135. }
  136. }
  137. }
  138. }
  139. </style>