news.vue 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153
  1. <template>
  2. <!-- 聊天消息 -->
  3. <view class="back">
  4. <view class="input u-flex">
  5. <u-icon name="search" color="rgba(153, 153, 153, 1)" size="40"></u-icon>
  6. <input type="text" placeholder="搜索聊天记录/团长" style="width: 600rpx;margin-left: 16rpx;" />
  7. </view>
  8. <!-- 客服 -->
  9. <view class="kefu u-flex" @click="tokefu">
  10. <image src="/pageA/static/images/kefu.png" style="width: 88rpx;height: 88rpx;" mode=""></image>
  11. <view class="u-row-between"
  12. style="height: 88rpx;display: flex;flex-direction: column;margin-left: 20rpx;width: 85%;">
  13. <view class="u-flex u-row-between">
  14. <view class="name">官方客服</view>
  15. <view class="time">14:09</view>
  16. </view>
  17. <view class="u-flex u-row-between">
  18. <text class="news">[卡片]</text>
  19. <u-badge :type="type" max="99" :value="value"></u-badge>
  20. </view>
  21. </view>
  22. </view>
  23. <view class="box ">
  24. <view class="u-flex " style="margin-bottom: 26rpx;" v-for="(item,idx) in list" :key="idx"
  25. @click="chat(item.lastMessage)">
  26. <image :src="item.lastMessage.ext.image" style="width: 88rpx;height: 88rpx;" mode=""></image>
  27. <view class="u-row-between" style="display: flex;flex-direction: column;margin-left: 20rpx;width: 85%;">
  28. <view class="u-flex u-row-between">
  29. <view class="name">{{item.lastMessage.ext.shopname}}</view>
  30. <view class="time">
  31. {{new Date(item.lastMessage.time).getFullYear()}}-{{new Date(item.lastMessage.time).getMonth() + 1}}-{{new Date(item.lastMessage.time).getDate()}}
  32. {{new Date(item.lastMessage.time).toTimeString().substr(0, 8)}}
  33. </view>
  34. </view>
  35. <view class="u-flex u-row-between"
  36. style="border-bottom: 2rpx solid #979797;padding-bottom: 26rpx;margin-top: 10rpx;">
  37. <text v-if="item.lastMessage.msg" class="news">{{item.lastMessage.msg}}</text>
  38. <text v-if="item.lastMessage.type == 'img'" class="news">图片</text>
  39. <u-badge :type="type" max="99" :value="item.unReadCount"></u-badge>
  40. </view>
  41. </view>
  42. </view>
  43. </view>
  44. </view>
  45. </template>
  46. <script>
  47. import {
  48. conn,
  49. } from '@/utils/WebIM';
  50. export default {
  51. data() {
  52. return {
  53. type: "error",
  54. value: 1,
  55. list: []
  56. };
  57. },
  58. onLoad() {
  59. this.getlist()
  60. },
  61. methods: {
  62. getlist() {
  63. conn.getServerConversations({
  64. pageSize: 50,
  65. cursor: ''
  66. }).then((res) => {
  67. console.log(res);
  68. this.list = res.data.conversations
  69. })
  70. },
  71. tokefu() {
  72. uni.navigateTo({
  73. url: '/pageA/service/service'
  74. })
  75. },
  76. // chat(item) {
  77. // uni.navigateTo({
  78. // url: '/pageA/chat/chat?user_other_no=' + item.from
  79. // })
  80. // }
  81. }
  82. }
  83. </script>
  84. <style lang="scss">
  85. .back {
  86. width: 750rpx;
  87. // height: 1624rpx;
  88. background: #F4F4F4;
  89. padding: 20rpx 24rpx;
  90. box-sizing: border-box;
  91. .input {
  92. width: 702rpx;
  93. height: 72rpx;
  94. background: #FFFFFF;
  95. border-radius: 36rpx;
  96. padding: 0 24rpx;
  97. box-sizing: border-box;
  98. }
  99. .kefu {
  100. width: 702rpx;
  101. height: 156rpx;
  102. background: #FFFFFF;
  103. border-radius: 16rpx;
  104. padding: 36rpx 24rpx 32rpx;
  105. box-sizing: border-box;
  106. margin-top: 24rpx;
  107. }
  108. .name {
  109. font-family: PingFangSC, PingFang SC;
  110. font-weight: 400;
  111. font-size: 32rpx;
  112. color: #222222;
  113. line-height: 44rpx;
  114. text-align: left;
  115. font-style: normal;
  116. }
  117. .time {
  118. font-family: SFPro, SFPro;
  119. font-weight: 400;
  120. font-size: 20rpx;
  121. color: #666666;
  122. line-height: 24rpx;
  123. text-align: left;
  124. font-style: normal;
  125. }
  126. .news {
  127. font-family: PingFangSC, PingFang SC;
  128. font-weight: 400;
  129. font-size: 24rpx;
  130. color: #666666;
  131. line-height: 34rpx;
  132. text-align: left;
  133. font-style: normal;
  134. }
  135. .box {
  136. width: 702rpx;
  137. min-height: 1156rpx;
  138. background: #FFFFFF;
  139. border-radius: 16rpx;
  140. padding: 40rpx 24rpx 20rpx;
  141. box-sizing: border-box;
  142. margin-top: 20rpx;
  143. }
  144. }
  145. </style>