chat2.vue 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203
  1. <template>
  2. <view class="content">
  3. <view class="list" id="list">
  4. <block v-for="(item,index) in pageList" :key="index">
  5. <view class="hflex acenter jend item" v-if="item.user.id == userId">
  6. <view class="message">{{item.content}}</view>
  7. <image :src="item.user.headimg" class="headimg"></image>
  8. </view>
  9. <view class="hflex acenter item" v-else>
  10. <image :src="item.user.headimg" class="headimg"></image>
  11. <view class="message message_left">{{item.content}}</view>
  12. </view>
  13. </block>
  14. </view>
  15. <view class="bottom hflex jbetween">
  16. <view class="bottom_left">
  17. <u-input v-model="message" shape="circle" placeholder="请输入信息..." border="none"></u-input>
  18. </view>
  19. <view class="bottom_btn hflex acenter jcenter" @click="send">立即回复</view>
  20. </view>
  21. </view>
  22. </template>
  23. <script>
  24. import $api from '@/static/js/api.js'
  25. var that = ''
  26. export default {
  27. data() {
  28. return {
  29. offer: {},
  30. message: '',
  31. pageList: [],
  32. type: '',
  33. id: '',
  34. offer_id: '',
  35. userId: ''
  36. }
  37. },
  38. onLoad(options) {
  39. that = this
  40. that.id = options.id
  41. that.userId = uni.getStorageSync('id')
  42. that.getList()
  43. },
  44. methods: {
  45. getList() {
  46. $api.req({
  47. url: '/data/api.auth.Center/suboffermessagelist',
  48. method: 'POST',
  49. data: {
  50. id: that.id,
  51. }
  52. }, function(res) {
  53. if(res.code == 1) {
  54. that.pageList = res.data
  55. setTimeout(() => {
  56. that.scrollToBottom()
  57. },300)
  58. }
  59. })
  60. },
  61. send() {
  62. if(that.message == "") {
  63. $api.info('不能发送空的内容')
  64. } else {
  65. $api.req({
  66. url: '/data/api.auth.Center/subofferleavemessage',
  67. method: 'POST',
  68. data: {
  69. id: that.id,
  70. content: that.message
  71. }
  72. }, function(res) {
  73. if(res.code == 1) {
  74. that.message = ""
  75. that.getList()
  76. }
  77. })
  78. }
  79. },
  80. scrollToBottom() {
  81. uni.createSelectorQuery().select('#list').boundingClientRect(function(rect){
  82. // 使页面滚动到底部
  83. console.log("页面的高度",rect)
  84. uni.pageScrollTo({
  85. scrollTop: rect.bottom
  86. })
  87. }).exec()
  88. }
  89. },
  90. }
  91. </script>
  92. <style lang="scss" scoped>
  93. .content::v-deep {
  94. background: #F4F4F4;
  95. .top {
  96. width: 100%;
  97. // height: 300px;
  98. background: #FFFFFF;
  99. box-shadow: 0px 4rpx 32rpx 0px rgba(0,0,0,0.04);
  100. border-radius: 0px 0px 28rpx 28rpx;
  101. box-sizing: border-box;
  102. padding: 24rpx 30rpx 0;
  103. .top_title {
  104. font-size: 28rpx;
  105. font-weight: 500;
  106. color: #222222;
  107. line-height: 40rpx;
  108. padding-bottom: 24rpx;
  109. }
  110. .top_item {
  111. width: 100%;
  112. height: 76rpx;
  113. background: #F4F4F4;
  114. border-radius: 16rpx;
  115. margin-bottom: 20rpx;
  116. box-sizing: border-box;
  117. padding: 0 20rpx;
  118. .item_label {
  119. font-size: 24rpx;
  120. font-weight: 500;
  121. color: #777777;
  122. line-height: 34rpx;
  123. padding-right: 28rpx;
  124. }
  125. .text_red {
  126. font-size: 28rpx;
  127. font-weight: 400;
  128. color: #FF3636;
  129. line-height: 34rpx;
  130. }
  131. }
  132. .img {
  133. width: 220rpx;
  134. height: 220rpx;
  135. border-radius: 16rpx;
  136. margin: 0 16rpx 24rpx 0;
  137. }
  138. .img:nth-child(3n+3) {
  139. margin: 0 0 24rpx;
  140. }
  141. }
  142. .list {
  143. width: 100%;
  144. margin-bottom: 186rpx;
  145. box-sizing: border-box;
  146. padding: 0 30rpx;
  147. .item {
  148. margin-top: 32rpx;
  149. .message {
  150. max-width: 480rpx;
  151. background: #FFFFFF;
  152. border-radius: 24rpx 4rpx 24rpx 24rpx;
  153. box-sizing: border-box;
  154. padding: 18rpx 20rpx;
  155. font-size: 26rpx;
  156. font-weight: 400;
  157. color: #444444;
  158. line-height: 36rpx;
  159. margin: 0 20rpx 0 0;
  160. }
  161. .message_left {
  162. margin: 0 0 0 20rpx;
  163. border-radius: 4rpx 24rpx 24rpx 24rpx;
  164. }
  165. .headimg {
  166. width: 68rpx;
  167. height: 68rpx;
  168. border-radius: 50%;
  169. }
  170. }
  171. }
  172. .bottom {
  173. width: 100%;
  174. height: 166rpx;
  175. position: fixed;
  176. bottom: 0;
  177. z-index: 999;
  178. box-sizing: border-box;
  179. padding: 16rpx 30rpx 0;
  180. background: #FFFFFF;
  181. .bottom_left {
  182. width: 490rpx;
  183. height: 72rpx;
  184. .u-input {
  185. height: 100%;
  186. background: #F4F4F4;
  187. padding: 0 32rpx !important;
  188. }
  189. }
  190. .bottom_btn {
  191. width: 180rpx;
  192. height: 72rpx;
  193. background: #506DFF;
  194. border-radius: 36rpx;
  195. font-size: 28rpx;
  196. font-weight: 500;
  197. color: #FFFFFF;
  198. }
  199. }
  200. }
  201. </style>