orderDetail.vue 9.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341
  1. <template>
  2. <view class="content">
  3. <view class="box">
  4. <view class="hflex acenter">
  5. <image :src="pageData.avatar" class="avatar"></image>
  6. <view class="vflex" style="padding-left: 12rpx;">
  7. <view class="text_style1">{{pageData.name}}</view>
  8. <view class="hflex acenter">
  9. <view class="text_style2">{{pageData.address}}</view>
  10. <view class="text_style2" style="padding: 0 10rpx;">|</view>
  11. <view class="text_style2">{{pageData.release_date}}发布</view>
  12. </view>
  13. </view>
  14. </view>
  15. <view class="text_style3 cell">{{pageData.fault}}</view>
  16. <view class="cell">
  17. <block v-for="(item,index) in pageData.imgList" :key="index">
  18. <image :src="item" mode="aspectFill" class="img"></image>
  19. </block>
  20. </view>
  21. <view class="hflex acenter jbetween cell">
  22. <view class="label">联系方式</view>
  23. <view class="text_style3">{{pageData.phone}}</view>
  24. </view>
  25. <view class="hflex acenter jbetween cell">
  26. <view class="label">维修时间</view>
  27. <view class="text_style3">{{pageData.release_date}}</view>
  28. </view>
  29. <view class="hflex acenter jbetween cell">
  30. <view class="label">维修地点</view>
  31. <view class="text_style3">{{pageData.repair_address}}</view>
  32. </view>
  33. </view>
  34. <view class="box hflex acenter jbetween">
  35. <view class="title">订单类型</view>
  36. <view class="right">{{pageData.order_type}}</view>
  37. </view>
  38. <view class="bottom">
  39. <view class="bottom_btn" @click="openOffer" v-if="state == 0">立即接单</view>
  40. <view class="bottom_btn bottom_btn2" @click="openSee" v-if="state == 1">已报价,立即查看</view>
  41. </view>
  42. <u-popup :show="quotation_show" mode="center" :round="10" :closeable="true" :safeAreaInsetBottom="false" @close="close">
  43. <view class="popup">
  44. <view class="popup_title">立即报价</view>
  45. <view class="input_bg hflex acenter">
  46. <view class="price">¥</view>
  47. <u-input v-model="offer" placeholder="填写你的报价" border="none"></u-input>
  48. </view>
  49. <view class="hflex acenter">
  50. <image src="/static/images/comment/icon_tips.png" style="width: 24rpx;height: 24rpx;padding-right: 6rpx"></image>
  51. <view class="popup_info">报价可先不填,可等评估后再填写</view>
  52. </view>
  53. <view class="hflex acenter" style="padding:30rpx 0 20rpx;">
  54. <view class="price">上传图片及资质证明图</view>
  55. </view>
  56. <u-upload :fileList="fileList1" @afterRead="afterRead" @delete="deletePic" name="1" multiple :maxCount="9"></u-upload>
  57. <view class="popup_btn">提交</view>
  58. </view>
  59. </u-popup>
  60. <u-popup :show="detail_show" mode="center" :round="10" :closeable="true" :safeAreaInsetBottom="false" @close="close">
  61. <view class="popup">
  62. <view class="popup_title">报价信息</view>
  63. <view class="popup_name">当前报价</view>
  64. <view class="hflex acenter input_bg" v-if="offer_info.offer.length >= 1">
  65. <view class="popup_text">第一次报价</view>
  66. <view class="red">{{offer_info.offer[0].price}}</view>
  67. </view>
  68. <view class="hflex acenter input_bg" v-if="offer_info.offer.length >= 2">
  69. <view class="popup_text">第二次报价</view>
  70. <view class="red">{{offer_info.offer[1].price}}</view>
  71. </view>
  72. <view class="hflex acenter input_bg" v-if="offer_info.offer.length >= 3">
  73. <view class="popup_text">第三次报价</view>
  74. <view class="red">{{offer_info.offer[2].price}}</view>
  75. </view>
  76. <view class="popup_name">图片及资质证明图片</view>
  77. <view>
  78. <block v-for="(item,index) in offer_info.imgs" :key="index">
  79. <image :src="item" mode="aspectFill" style="width: 188rpx;height: 188rpx;margin: 0 14rpx 20rpx 0;border-radius: 16rpx;"></image>
  80. </block>
  81. </view>
  82. <view class="popup_btn">查看详情</view>
  83. </view>
  84. </u-popup>
  85. </view>
  86. </template>
  87. <script>
  88. import $api from '@/static/js/api.js'
  89. var that = ''
  90. export default {
  91. data() {
  92. return {
  93. state: 1,
  94. pageData: {
  95. avatar: '/static/images/mine/avatar2.jpg',
  96. name: 'NANA的微笑',
  97. address: '江苏南京市',
  98. release_date: '2022-08-08 12:34',
  99. fault: '请详细描述故障情况及原因,方便师傅带齐工具,并为您提供准确合理的维修请详细描述故障情况及原因,方便师傅带齐工具,并为提供准确合理的维修请详细描述故障情况及',
  100. imgList: ['/static/images/mine/avatar1.jpg','/static/images/mine/avatar1.jpg','/static/images/mine/avatar1.jpg'],
  101. phone: '19834874567',
  102. repair_date: '2022-08-03至08-04',
  103. repair_address: '上海市浦东区滨河路18号江东造船厂',
  104. order_type: '快修'
  105. },
  106. quotation_show: false,
  107. offer: '',
  108. fileList1: [],
  109. detail_show: false,
  110. offer_info: {
  111. offer: [
  112. {
  113. index: 1,
  114. price: '2,399.89'
  115. },
  116. ],
  117. imgs: ['/static/images/mine/avatar2.jpg']
  118. }
  119. }
  120. },
  121. onLoad() {
  122. that = this
  123. },
  124. methods: {
  125. // 立即接单
  126. openOffer() {
  127. that.quotation_show = true
  128. },
  129. // 查看报价
  130. openSee() {
  131. that.detail_show = true
  132. },
  133. // 关闭
  134. close() {
  135. that.quotation_show = false
  136. that.detail_show = false
  137. },
  138. // 删除图片
  139. deletePic(event) {
  140. this[`fileList${event.name}`].splice(event.index, 1)
  141. },
  142. // 新增图片
  143. async afterRead(event) {
  144. // 当设置 multiple 为 true 时, file 为数组格式,否则为对象格式
  145. let lists = [].concat(event.file)
  146. let fileListLen = this[`fileList${event.name}`].length
  147. lists.map((item) => {
  148. this[`fileList${event.name}`].push({
  149. ...item,
  150. status: 'uploading',
  151. message: '上传中'
  152. })
  153. })
  154. for (let i = 0; i < lists.length; i++) {
  155. const result = await this.uploadFilePromise(lists[i].url)
  156. let item = this[`fileList${event.name}`][fileListLen]
  157. this[`fileList${event.name}`].splice(fileListLen, 1, Object.assign(item, {
  158. status: 'success',
  159. message: '',
  160. url: result
  161. }))
  162. fileListLen++
  163. }
  164. },
  165. uploadFilePromise(url) {
  166. return new Promise((resolve, reject) => {
  167. let a = uni.uploadFile({
  168. url: 'http://192.168.2.21:7001/upload', // 仅为示例,非真实的接口地址
  169. filePath: url,
  170. name: 'file',
  171. formData: {
  172. user: 'test'
  173. },
  174. success: (res) => {
  175. setTimeout(() => {
  176. resolve(res.data.data)
  177. }, 1000)
  178. }
  179. });
  180. })
  181. },
  182. },
  183. }
  184. </script>
  185. <style lang="scss" scoped>
  186. .content {
  187. background: #F4F4F4;
  188. .box {
  189. width: 690rpx;
  190. margin: 20rpx 30rpx 0;
  191. background: #FFFFFF;
  192. border-radius: 10px;
  193. box-sizing: border-box;
  194. padding: 20rpx;
  195. .avatar {
  196. width: 72rpx;
  197. height: 72rpx;
  198. }
  199. .text_style1 {
  200. font-size: 28rpx;
  201. font-weight: 500;
  202. color: #222222;
  203. line-height: 40rpx;
  204. }
  205. .text_style2 {
  206. font-size: 22rpx;
  207. font-weight: 400;
  208. color: #B7B7B7;
  209. line-height: 32rpx;
  210. }
  211. .text_style3 {
  212. font-size: 28rpx;
  213. font-weight: 400;
  214. color: #444444;
  215. line-height: 44rpx;
  216. }
  217. .img {
  218. width: 200rpx;
  219. height: 200rpx;
  220. border-radius: 12rpx;
  221. margin: 0 14rpx 20rpx 0;
  222. }
  223. .img:nth-child(3n+3) {
  224. margin: 0 0 20rpx 0;
  225. }
  226. .label {
  227. font-size: 26rpx;
  228. font-weight: 400;
  229. color: #777777;
  230. line-height: 36rpx;
  231. }
  232. .title {
  233. font-size: 30rpx;
  234. font-weight: 400;
  235. color: #222222;
  236. line-height: 42rpx;
  237. }
  238. .right {
  239. font-size: 30rpx;
  240. font-weight: 500;
  241. color: #506DFF;
  242. line-height: 42rpx;
  243. }
  244. .cell {
  245. padding: 14rpx 0;
  246. }
  247. }
  248. .bottom {
  249. width: 100%;
  250. z-index: 9;
  251. position: fixed;
  252. bottom: 0;
  253. height: 166rpx;
  254. background: #FFFFFF;
  255. box-sizing: border-box;
  256. padding: 8rpx 40rpx 74rpx;
  257. .bottom_btn {
  258. width: 100%;
  259. height: 84rpx;
  260. background: #506DFF;
  261. border-radius: 42rpx;
  262. font-size: 36rpx;
  263. font-weight: 500;
  264. color: #FFFFFF;
  265. text-align: center;
  266. line-height: 84rpx;
  267. }
  268. .bottom_btn2 {
  269. background: rgba(80,109,255,0.5);
  270. }
  271. }
  272. .popup {
  273. width: 670rpx;
  274. background: #FFFFFF;
  275. border-radius: 10px;
  276. box-sizing: border-box;
  277. padding: 36rpx 30rpx 24rpx;
  278. .popup_title {
  279. width: 100%;
  280. text-align: center;
  281. font-size: 32rpx;
  282. font-weight: 500;
  283. color: #222222;
  284. margin-bottom: 24rpx;
  285. }
  286. .popup_name {
  287. font-size: 26rpx;
  288. font-weight: 400;
  289. color: #222222;
  290. padding: 28rpx 0 20rpx;
  291. }
  292. .popup_text {
  293. font-size: 22rpx;
  294. font-weight: 500;
  295. color: #777777;
  296. padding-right: 60rpx;
  297. }
  298. .input_bg {
  299. background: #F4F4F4;
  300. border-radius: 8px;
  301. box-sizing: border-box;
  302. padding: 16rpx 20rpx;
  303. margin: 20rpx 0;
  304. .price {
  305. font-size: 32rpx;
  306. font-weight: 500;
  307. color: #222222;
  308. padding-right: 20rpx;
  309. }
  310. .u-textarea {
  311. background-color: #F4F4F4 !important;
  312. }
  313. .red {
  314. font-size: 28rpx;
  315. font-weight: bold;
  316. color: #FF3636;
  317. }
  318. }
  319. .popup_info {
  320. font-size: 20rpx;
  321. font-weight: 400;
  322. color: #C0C0C0;
  323. line-height: 28rpx;
  324. }
  325. .popup_btn {
  326. width: 610rpx;
  327. height: 80rpx;
  328. background: #506DFF;
  329. border-radius: 40rpx;
  330. font-size: 32rpx;
  331. font-weight: 500;
  332. color: #FFFFFF;
  333. text-align: center;
  334. line-height: 80rpx;
  335. margin: 20rpx 0;
  336. }
  337. }
  338. }
  339. </style>