msg.vue 5.3 KB

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