chat.vue 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. <template>
  2. <view class="content">
  3. <view class="list">
  4. <block v-for="(item,index) in pageList" :key="index">
  5. <u-swipe-action>
  6. <u-swipe-action-item :options="options" @click="deleteItem">
  7. <view class="item hflex acenter" @click="chatItem(item)">
  8. <view class="img_box">
  9. <image :src="item.src" class="img"></image>
  10. </view>
  11. <view class="img_right">
  12. <view class="hflex aend jbetween">
  13. <view class="name">{{item.name}}</view>
  14. <view class="text">{{item.date}}</view>
  15. </view>
  16. <view class="hflex acenter jbetween">
  17. <view class="text">{{item.text}}</view>
  18. <view class="num">{{item.num}}</view>
  19. </view>
  20. </view>
  21. </view>
  22. </u-swipe-action-item>
  23. </u-swipe-action>
  24. </block>
  25. </view>
  26. </view>
  27. </template>
  28. <script>
  29. // import WebIM from '@/utils/WebIM.js'
  30. import $api from '@/static/js/api.js'
  31. var that = ''
  32. export default {
  33. data() {
  34. return {
  35. pageList:[
  36. {
  37. id: 51,
  38. name: '雷神',
  39. date: '',
  40. text: '',
  41. num: '',
  42. }
  43. ],
  44. options: [{
  45. text: '删除'
  46. }]
  47. }
  48. },
  49. onLoad() {
  50. that = this
  51. that.getConverList()
  52. },
  53. methods: {
  54. getConverList() {
  55. console.log(uni.WebIM);
  56. uni.WebIM.conn.getSessionList().then((res) => {
  57. console.log(res);
  58. })
  59. },
  60. deleteItem() {},
  61. chatItem(item) {
  62. console.log(item);
  63. $api.jump('/page_shop/pages/mine/chatDetail?id=' + item.id + '&name=' + item.name)
  64. }
  65. },
  66. }
  67. </script>
  68. <style lang="scss" scoped>
  69. .content {
  70. padding: 0 30rpx;
  71. .list {
  72. .item {
  73. padding-top: 28rpx;
  74. width: 100%;
  75. .img_box {
  76. width: 100rpx;
  77. height: 100rpx;
  78. margin-right: 20rpx;
  79. .img {
  80. width: 100%;
  81. height: 100%;
  82. border-radius: 50%;
  83. }
  84. }
  85. .img_right {
  86. width: calc(100% - 120rpx);
  87. padding: 0 0 32rpx;
  88. border-bottom: 1rpx solid #E9E9E9;
  89. .name {
  90. font-size: 32rpx;
  91. font-weight: 500;
  92. color: #222222;
  93. line-height: 44rpx;
  94. }
  95. .text {
  96. font-size: 24rpx;
  97. font-weight: 400;
  98. color: #999999;
  99. line-height: 34rpx;
  100. }
  101. .num {
  102. width: 34rpx;
  103. height: 34rpx;
  104. border-radius: 17rpx;
  105. font-size: 24rpx;
  106. text-align: center;
  107. font-weight: 400;
  108. color: #FFFFFF;
  109. line-height: 34rpx;
  110. background: #FF5745;
  111. }
  112. }
  113. }
  114. }
  115. }
  116. </style>