msg.vue 6.0 KB

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