chat-list.vue 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181
  1. <template>
  2. <view class="content">
  3. <view class="list">
  4. <view class="list-item" v-for="(item,index) in list" :key="index">
  5. <view class="time">{{item.time}}</view>
  6. <view class=" hflex acenter jbetween">
  7. <image :src="other_user.avatar" style="margin-right: 12rpx;" mode="aspectFill"
  8. v-if="item.id == other_user.id"></image>
  9. <view v-else style="width: 68rpx;"></view>
  10. <view class="text" :style="item.id == user.id ? 'background: #00B0B0;color: #FFFFFF' : ''">
  11. {{item.content}}
  12. </view>
  13. <image :src="user.avatar" style="margin-left: 12rpx;" mode="aspectFill" v-if="item.id == user.id">
  14. </image>
  15. <view v-else style="width: 68rpx;"></view>
  16. </view>
  17. </view>
  18. </view>
  19. </view>
  20. </template>
  21. <script>
  22. import $api from '@/static/js/api.js'
  23. export default {
  24. data() {
  25. return {
  26. user: {},
  27. other_user: {},
  28. chat_user_id: '',
  29. userid: '',
  30. list: [],
  31. text: '',
  32. show_menu: false,
  33. page: 1,
  34. last_page: 1
  35. }
  36. },
  37. onLoad(option) {
  38. this.chat_user_id = option.id
  39. this.userid = uni.getStorageSync('userid')
  40. this.getlist()
  41. },
  42. onShow() {
  43. },
  44. onPullDownRefresh() {
  45. },
  46. onReachBottom() {
  47. },
  48. methods: {
  49. getlist() {
  50. var that = this
  51. $api.req({
  52. url: 'chat/detail',
  53. data: {
  54. is_page: 0,
  55. chat_user_id: that.chat_user_id
  56. }
  57. }, function(res) {
  58. that.list = res.data
  59. })
  60. }
  61. }
  62. }
  63. </script>
  64. <style lang="scss">
  65. .content::v-deep {
  66. background: #FFFFFF;
  67. padding: 20rpx 28rpx;
  68. .u-nav-right {
  69. position: relative;
  70. .menu {
  71. position: absolute;
  72. right: 0;
  73. top: 56rpx;
  74. width: 188rpx;
  75. height: 144rpx;
  76. background: #FFFFFF;
  77. box-shadow: 0rpx 4rpx 20rpx -4rpx rgba(0, 0, 0, 0.2);
  78. border-radius: 8rpx;
  79. box-sizing: border-box;
  80. padding: 26rpx 24rpx 0;
  81. .menu-item {
  82. padding: 0 0 32rpx;
  83. image {
  84. width: 36rpx;
  85. height: 36rpx;
  86. }
  87. .menu-text {
  88. padding-left: 12rpx;
  89. font-size: 24rpx;
  90. font-family: PingFangSC, PingFang SC;
  91. font-weight: 400;
  92. color: #555555;
  93. }
  94. }
  95. }
  96. }
  97. .bottom {
  98. border-top: 1px solid #E5E5E5;
  99. width: 100%;
  100. position: fixed;
  101. bottom: 0;
  102. left: 0;
  103. background: #FFFFFF;
  104. padding: 14rpx 28rpx 76rpx;
  105. box-sizing: border-box;
  106. .u-input {
  107. width: 528rpx !important;
  108. height: 76rpx;
  109. box-sizing: border-box;
  110. background: #F5F5F5;
  111. border-radius: 40rpx;
  112. padding: 18rpx 40rpx !important;
  113. }
  114. .btn2 {
  115. opacity: 1 !important;
  116. }
  117. .btn {
  118. margin-left: 20rpx;
  119. width: 146rpx;
  120. height: 76rpx;
  121. background: #00B0B0;
  122. border-radius: 40rpx;
  123. opacity: 0.5;
  124. font-size: 28rpx;
  125. font-family: PingFangSC, PingFang SC;
  126. font-weight: 400;
  127. color: #FFFFFF;
  128. text-align: center;
  129. line-height: 76rpx;
  130. }
  131. }
  132. .list {
  133. .list-item {
  134. margin: 0 0 44rpx;
  135. .time {
  136. width: 100%;
  137. text-align: center;
  138. font-size: 26rpx;
  139. font-family: PingFangSC, PingFang SC;
  140. font-weight: 400;
  141. color: #999999;
  142. padding-bottom: 24rpx;
  143. }
  144. image {
  145. width: 68rpx;
  146. height: 68rpx;
  147. border-radius: 50%;
  148. }
  149. .text {
  150. width: 512rpx;
  151. background: #F5F5F5;
  152. font-size: 28rpx;
  153. font-family: SFPro, SFPro;
  154. font-weight: 400;
  155. color: #333333;
  156. padding: 18rpx 28rpx;
  157. border-radius: 16rpx;
  158. }
  159. }
  160. }
  161. }
  162. </style>