orderDetail.vue 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723
  1. <template>
  2. <view class="content">
  3. <view class="row b-b b-t">
  4. <text class="order-status">{{ item._status ? item._status._msg : '' }}</text>
  5. </view>
  6. <!-- 快递信息 -->
  7. <view class="express-box" @click="expressCheck(item)" v-if="item.delivery_id != null ">
  8. <view v-if='item.delivery_id != null' style="width: 100%;padding: 10rpx 20rpx;background: #FFFFFF;">
  9. <view class="express-frame">
  10. <view>
  11. <view style="display: flex;">
  12. <text class="express-text">骑手:</text>
  13. {{ item.delivery_name }}
  14. </view>
  15. <view style="display: flex;">
  16. <text class="express-text">联系方式:</text>
  17. {{ item.delivery_id }}
  18. </view>
  19. </view>
  20. <text class="iconfont iconenter" style="color: #CCCCCC;"></text>
  21. </view>
  22. </view>
  23. </view>
  24. <view v-if="item.delivery_kf_info&& item.delivery_kf_info.latitude && item.status <=2 &&item.shipping_type == 1 && item.status > 0">
  25. <map :latitude="item.user_address_info.latitude" :longitude="item.user_address_info.longitude" :scale="13" class="map-wrap" :markers="[
  26. {
  27. id: 0,
  28. latitude: item.delivery_kf_info.latitude,
  29. longitude: item.delivery_kf_info.longitude,
  30. iconPath: '/static/icon/worker.png',
  31. width:40,
  32. height: 30
  33. },
  34. {
  35. id: 1,
  36. latitude: item.user_address_info.latitude,
  37. longitude: item.user_address_info.longitude,
  38. iconPath: '/static/icon/local.png',
  39. width: 20,
  40. height: 30
  41. }
  42. ]"></map>
  43. </view>
  44. <view class="address-box position-relative">
  45. <view class="address-top flex">
  46. <view class="title">{{ item.real_name }}</view>
  47. <view class="phone">{{ item.user_phone }}</view>
  48. </view>
  49. <view class="addrdss-detail" v-if="item.user_address">{{ item.user_address }}</view>
  50. <image class="a-bg" :src="addressImg"></image>
  51. </view>
  52. <view class="order-item">
  53. <view class="goods-box-single"
  54. @click="navTo('/pages/product/product?id='+goodsItem.product_id+'&shopId='+goodsItem.store_id)"
  55. v-for="(goodsItem, goodsIndex) in item.cartInfo" :key="goodsIndex">
  56. <image class="goods-img" :src="goodsItem.productInfo.image" mode="aspectFill"></image>
  57. <view class="right position-relative">
  58. <view class="flex">
  59. <text class="title">{{ goodsItem.productInfo.store_name }}</text>
  60. <view class="title-right">
  61. <view class="price">{{ goodsItem.productInfo.price }}</view>
  62. <view class="attr-box">
  63. {{ goodsItem.attrInfo ? goodsItem.attrInfo.suk : '' }} x
  64. {{ goodsItem.cart_num + '' + (goodsItem.productInfo.unit_name ||'') }}
  65. </view>
  66. <view class="padding-t-20">
  67. <view v-if="status._type == 3">
  68. <view @click.stop="evaluate(goodsItem)" class="yesevaluate"
  69. v-if="goodsItem.is_reply > 0">已评价</view>
  70. <view @click.stop="evaluate(goodsItem)" class="evaluate" v-if="goodsItem.is_reply < 1">
  71. 去评价
  72. </view>
  73. </view>
  74. </view>
  75. </view>
  76. </view>
  77. </view>
  78. </view>
  79. </view>
  80. <view class="row b-b flex">
  81. <text class="tit">订单总价</text>
  82. <view class="input">¥{{ payAllMoney }}</view>
  83. </view>
  84. <view class="row b-b flex" v-if="vipMoney > 0">
  85. <text class="tit">vip优惠</text>
  86. <view class="input">-¥{{ vipMoney }}</view>
  87. </view>
  88. <view class="row b-b flex">
  89. <text class="tit">邮费</text>
  90. <view class="input">{{ item.pay_postage > 0 ? '¥' + item.pay_postage : '免邮费' }}</view>
  91. </view>
  92. <view class="row b-b flex" v-if="item.coupon_id > 0">
  93. <text class="tit">优惠券</text>
  94. <view class="input">-¥{{ item.coupon_price }}</view>
  95. </view>
  96. <view class="row b-b flex" v-if="item.use_certificate_num > 0">
  97. <text class="tit">水劵</text>
  98. <view class="input">-{{ item.use_certificate_num }}张</view>
  99. </view>
  100. <view class="row b-b flex" v-if="item.use_integral > 0">
  101. <text class="tit">积分抵扣</text>
  102. <view class="input">-¥{{ item.use_integral }}</view>
  103. </view>
  104. <view class="row b-b flex">
  105. <text class="tit ">实付</text>
  106. <view class="input payColor">¥{{ item.pay_price }}</view>
  107. </view>
  108. <view class="orderDetialBox">
  109. <view class="f-header m-t">
  110. <view class="f-left-icon"></view>
  111. <view class="tit-box"><text class="tit">订单信息</text></view>
  112. </view>
  113. <view class="item flex">
  114. <view class="title-left flex">
  115. <text class="title">订单编号:</text>
  116. <view class="text">{{ item.order_id }}</view>
  117. </view>
  118. <view class="buttom-right" @click="copyOrderId(item.order_id)">复制单号</view>
  119. </view>
  120. <view class="item flex">
  121. <view class="title-left flex">
  122. <text class="title">下单时间:</text>
  123. <view class="text">{{ item._add_time }}</view>
  124. </view>
  125. </view>
  126. <view class="item flex">
  127. <view class="title-left flex">
  128. <text class="title">订单类型:</text>
  129. <view class="text">{{ item | orderType }}</view>
  130. </view>
  131. </view>
  132. <view class="item flex">
  133. <view class="title-left flex">
  134. <text class="title">订单状态:</text>
  135. <view class="text">{{ item._status._title || '' }}</view>
  136. </view>
  137. </view>
  138. <view class="item flex">
  139. <view class="title-left flex">
  140. <text class="title">支付方式:</text>
  141. <view class="text">{{ item._status._payType||"" }}</view>
  142. </view>
  143. </view>
  144. </view>
  145. <view class="orderDetialBox" v-if="item.delivery_id">
  146. <view class="item flex">
  147. <view class="title-left flex">
  148. <text class="title">配送方式:</text>
  149. <view class="text">
  150. {{ item.delivery_type == 'express' ? '发货' : item.delivery_type == 'send' ? '送货' : '' }}
  151. </view>
  152. </view>
  153. </view>
  154. <view class="item flex">
  155. <view class="title-left flex">
  156. <text class="title" v-if="item.delivery_type == 'express'">快递公司:</text>
  157. <text class="title" v-if="item.delivery_type == 'send'">送货人员:</text>
  158. <view class="text">{{ item.delivery_name }}</view>
  159. </view>
  160. <!-- <view v-if="status._type != 1 && status._type != 0" class="buttom-right" @click="towuliu(item)">查看物流
  161. </view> -->
  162. </view>
  163. <view class="item flex">
  164. <view class="title-left flex">
  165. <text class="title" v-if="item.delivery_type == 'express'">快递单号:</text>
  166. <text class="title" v-if="item.delivery_type == 'send'">联系方式:</text>
  167. <view class="text">{{ item.delivery_id }}</view>
  168. </view>
  169. </view>
  170. </view>
  171. <view class="flex bottomBox" v-if="type==1">
  172. <view class="buttomBottom" @click="shopLi" >
  173. 联系商家
  174. </view>
  175. <view class="buttomBottom bgYellow" @click="shopNext">
  176. 前往商家
  177. </view>
  178. </view>
  179. <view class="flex bottomBox" v-if="type==2">
  180. <view class="buttomBottom" @click="shopLi" >
  181. 联系客户
  182. </view>
  183. <view class="buttomBottom" @click="shopNext" >
  184. 导航
  185. </view>
  186. <view v-if="item._status._title=='待收货' && userInfo.uid == item.delivery_kf_info.uid" class="buttomBottom bgYellow flex-grow-true" @click="send">
  187. 确认送达
  188. </view>
  189. </view>
  190. </view>
  191. </template>
  192. <script>
  193. import util from '@/utils/util.js';
  194. import {
  195. orderDetail,
  196. adminOrderDetail
  197. } from '@/api/order.js';
  198. import {
  199. take_delivery,
  200. staff_location
  201. } from '@/api/water.js';
  202. import {
  203. mapState
  204. } from 'vuex';
  205. export default {
  206. filters: {
  207. orderType: function(item) {
  208. if (item.combination_id > 0) {
  209. return '拼团订单';
  210. } else if (item.seckill_id > 0) {
  211. return '秒杀订单';
  212. } else if (item.bargain_id > 0) {
  213. return '砍价订单';
  214. } else {
  215. return '普通订单';
  216. }
  217. }
  218. },
  219. data() {
  220. return {
  221. longitude:uni.getStorageSync('CACHE_LONGITUDE'),
  222. latitude:uni.getStorageSync('CACHE_LATITUDE'),
  223. refund: '', //退款理由
  224. reason: '', //备注
  225. value: ['1', '2', '3', '4', '5', '6', '7', '8', 9, 10, 11, 12, 13],
  226. orderId: '',
  227. item: {
  228. _status: {}
  229. },
  230. status: [],
  231. type:1,//1用户订单2派送员订单
  232. vipMoney: 0, //vip优惠金额
  233. addressImg: 'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAu4AAAAFCAYAAAAaAWmiAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6Rjk3RjkzMjM2NzMxMTFFOUI4RkU4OEZGMDcxQzgzOEYiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6Rjk3RjkzMjQ2NzMxMTFFOUI4RkU4OEZGMDcxQzgzOEYiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpGOTdGOTMyMTY3MzExMUU5QjhGRTg4RkYwNzFDODM4RiIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpGOTdGOTMyMjY3MzExMUU5QjhGRTg4RkYwNzFDODM4RiIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PrEOZlQAAAiuSURBVHjazJp7bFvVHce/1/deXzuJHSdOM+fhpKMllI2SkTZpV6ULYrCHQGwrf41p/LENVk3QTipSWujKoyot1aQN0FYQQxtsMCS2SVuqsfFYHxBKYQNGV9ouZdA8nDipH4mT+HFf+51rO0pN0japrw9HreLe3Pqc3/me3+f3uFdIvfVuDIAPix1C9oceicFRVQWlvRWCkL1omqb1Of9z9rXZY65rhcO6x5ove19oWkX/RAaSMLOEkg+2Zt0wEcvoWOZzYZnXeWEbzmP7XPs11//LnOiDEY9DkGRwGw5a59QUTM2As+1qiD5v0TUvvC9Bc52KpmDSnju4ic7+CIinNVQoElYtcUM8jx2L1bzwPn14DOrHZ0hzEdxOPJtW16FH45CvuBzyZU22aH7Od9LnU/E0xpMqJG6iZ309qeqYNoA1gTJ4ZdF2zY2pJNSTfYCmkb85+GnO1hIbh+DzQVndaiHYTs3ZGJpifE/DyVnzi+X7pWqen8/i+8kPYUSjEORPCd9XtUKs9Fi+KMxjVzE0n9ZNnIgkYXwK+B5LafC4JKyudcMxD2+LqblGfNcY30VxJsfhcOCJ7xr02ATkluXE96DtmrPvPxFLIUH7zY3vOc0Z39O0oGtqy1DlFIuu+Zx8P/Ffa8/hEBey4rh0uuPWS6S6CRUhyGjG0hcfOWex+c9zXSsE5HmFzseP3H294Sl847VBRGJJQHTwy9wJNKAE7otLfXi2K3hRgeB81+bar8IDEPvFMxi6cxebnMx2cjrnDmiIwUAGDTvugX9de9E1L7R9NK1jc+8gnj8dy2rOKY/JRhgV8Cr405ea0HEBOxajeaHtySPvYvD2bUgdP0lmuzkl7oLl6Wn0wX/Dd1D/xG5bNc/f+7NjY9jyzghlM5QxS/ySOGt+Wlt3WwDXBz22a86gHrqjG7Hnekhz5uciN9NVDEBxXYng87vgEoqveZ7y+XsPE99vOTyAs1SkU+bOT3NKIJHUsIb4/rsL8L0YmrMRffQ3GNn8c6L7BOnu4pW10/xR4nsK9T+5FzWda2fXcEXTfLbtYUrc7joSwguno9kilZfsLNmgtaBcxv7rmudN2i9Fc8YRlsvkr6aOvoeBHxDf//MBzVfGke9p8vVhVN2wAQ1P7rFdczYeO34Wm4+Gsr4mcqzWMqQ5IX5rex3W1pUXX/PCRlwkjpEtDyLy9B8sPxcgLWzFpy7rWlTH3eq66AbUj0fh7lyJhn27oFzVck41mTdgdnU5+3fzbczsqqVwQ14aSuCrhwZoo3UEqCLW6biZJZZZom0e0UhlSiY3rvBjd0cdfLJjTrsXYvN8e5TvPEZ2PYbw9l9CrKqAWFNB+2+W/oiTc2l9BFefC/WPdqPyuxts1/zMlIrbqVB7OZSgaSWrC2eUWHUGcLa2MVrLyho3ftvVhNYq1ye6J8XUnI3JFw8idNdOaB+GIS+vsZhf6gMvsP1OJKGFx1H9o1sQeOSBXOcfc9pQDM3Z2PGvEeykxJ0l7AGaTyux4YKVLpOvs0BO/v0UQf17LdUzwdcskuaFHRo1NIrQxq1I9ByEc2kj+ZwDZsk1z/H9I+L7us+j4fHdUFa2FF3zQtv3DyTwrTcGoVFxXOeWKZEoPeNm+E66b7zSj71r6+ERHXN21C5V85nPmo7I3scRvncfxOoyiP7y0vNdyMZ17X9xmGR+43MPwvvtm23XnPH9h68P4u8U2yuJ7wonvmu0pigValf73XhmfRCt1S5bNbd6QK/0ov+2bhjDE8T3aj58p5hujCehjsZQs+lWLNl5N0RvuS2a5z/T8cLOd8K4/72wxdaAXHq+syGT7sOM7xLxvaOe+F5lu+bqYBjDd25H4s+vQ26ugSBL1lsEC+m4C8fQvMhXZXTa/CR8N96MekrapWCdvc1t+rvn32PY3juYrc7cEjjonFuMYQm97QsBPLSq1v7pKJAPbbwHZ3ueoqCyhJIJStqto8/BdMTh8q1A8PcPo+xrXbbP97ehSXydFWpjU0CZzO8xInM+CqSdTV688OVmBBT7O6DRh/dhYOt20nqSdK+f1RIqdRMqRXgrR90Dm+Dfsdn2+QYpeH7/8CBe+mAsq7nIsevKEjivgv1dQdzYUGH7dMlXe3FmwxZMTRyFgiZkW48mF0/XMYWqm75JfH8IUmPA1tlUMnHv+8T3N3J8d3Hkey6I3re6Djvaam1v/urhswjdsQ2jf/kVJRI1xHdPrh1lltzTWUxXai5H07N74P7KettnPDQyjWtf/ohglyJfl7jz/drP+vDrzgYsLZdtP2PRnz6B/u4t9I+U9cYCH81hddoFuBG4bxNq7v9xSfh+G/H9wKkIwF5JkR38fF3VLb73dDXhpsYS8P0Vxve7MZ14E04EkX2SumDj40Lkjz2LS9x1nZVqcK1rh1L/GaiZDB1GYwGPRi9+sA4r63odGEjAoKTZS0mTwUtoS2sTPioc1jd64KJqNZXRP9EtLFrLT5KQOd6H1JtvQ/SUQ1CUC1Z/tjp5MgXn51bAfc1VpAUVb6pqi+bsqRlrOB0ITSI0kUa1IvF7JcribPbxZnt9BYIeBZm0ap1BO2yHLMOIxjH111chmDocXg9XzZFR4fD74e5cA9GtQEulbLGbfaNMvv4+BfG3hiet9wxlUeDGdDPn68uqXVgVKKezbiBN/HHYoTnrqlORkDx0BHr/ABzVVbknbZysZ3wnRVyda6HU1UIjvpt28p2C+T+GEtYeeEh3jqcdKjl2BcWY65q9UAQb+c6+k3iePnaS+P5Pq8spOJ38fJ09RVI1OFuWo6xtJXSD+J6xh++OHN8PEt8HxtNY4pbAczC+m2Rnh8V3J9Q0Fa4LeG97YQdehj4aoSL9NZiZNMTKStp6g5/x5NsW37vWQaS1WXzPHvjihzYS/lgshbeJ75WySHm7wNXXk8SbK/xutOX4ntHtYRxE0eJn6uARaGf6ie++7GPNxVkf/78AAwCn1+RYqusbZQAAAABJRU5ErkJggg=='
  234. };
  235. },
  236. onLoad(option) {
  237. this.orderId = option.id;
  238. this.type = option.type;
  239. this.loadOrder();
  240. if(this.type==2){
  241. util.$L.getLocation();
  242. }
  243. },
  244. computed: {
  245. ...mapState('user',['userInfo']),
  246. payAllMoney() {
  247. return this.vipMoney + +this.item.total_price;
  248. }
  249. },
  250. methods: {
  251. // 送达
  252. send(){
  253. const that= this;
  254. const longitude = uni.getStorageSync('CACHE_LONGITUDE');
  255. const latitude = uni.getStorageSync('CACHE_LATITUDE');
  256. staff_location({
  257. longitude,
  258. latitude
  259. }).then((res)=>{
  260. }).catch((res)=>{
  261. console.log(res,'定位错误');
  262. })
  263. uni.showModal({
  264. title: '送货',
  265. content: '是否确认送达到用户',
  266. success: res => {
  267. if(res.confirm){
  268. take_delivery({
  269. id:that.item.id
  270. }).then((res)=>{
  271. uni.showToast({
  272. title:res.msg
  273. })
  274. that.loadOrder();
  275. }).catch((res)=>{
  276. })
  277. }
  278. },
  279. fail: () => {},
  280. complete: () => {}
  281. });
  282. },
  283. // 导航
  284. navTo(url) {
  285. console.log(url);
  286. uni.navigateTo({
  287. url: url
  288. })
  289. },
  290. // 联系商家
  291. shopLi() {
  292. let phoneNumber ;
  293. if(this.type==1){
  294. phoneNumber = this.item.system_store.phone;
  295. }
  296. if(this.type==2){
  297. phoneNumber = this.item.user_phone;
  298. }
  299. uni.makePhoneCall({
  300. phoneNumber //仅为示例
  301. });
  302. },
  303. // 前往商家
  304. shopNext() {
  305. let data={
  306. latitude:'',
  307. longitude:'',
  308. }
  309. if(this.type==1){
  310. data.latitude = +this.item.system_store.latitude
  311. data.longitude = +this.item.system_store.longitude
  312. }
  313. if(this.type==2){
  314. data.latitude = +this.item.user_address_info.latitude
  315. data.longitude = +this.item.user_address_info.longitude
  316. }
  317. // 打开地图导航
  318. uni.openLocation({
  319. latitude: +this.item.system_store.latitude,
  320. longitude: +this.item.system_store.longitude,
  321. fail(e) {
  322. console.log(e);
  323. }
  324. })
  325. },
  326. // 跳转到查询快递页面
  327. expressCheck(item) {
  328. // uni.navigateTo({
  329. // url: '/pages/order/expressInfo?id=' + item.id
  330. // });
  331. },
  332. // 载入订单详细
  333. loadOrder() {
  334. let obj = this;
  335. if(this.type == 1) {
  336. orderDetail({}, obj.orderId).then(e => {
  337. obj.item = e.data;
  338. obj.item.cartInfo.forEach(e => {
  339. // 计算vip优惠金额
  340. obj.vipMoney += e.vip_truePrice;
  341. });
  342. obj.item.user_address = obj.item.user_address.trim();
  343. this.status = e.data._status;
  344. console.log(e);
  345. });
  346. }
  347. if(this.type == 2) {
  348. adminOrderDetail({}, obj.orderId).then(e => {
  349. obj.item = e.data;
  350. obj.item.cartInfo.forEach(e => {
  351. // 计算vip优惠金额
  352. obj.vipMoney += e.vip_truePrice;
  353. });
  354. obj.item.user_address = obj.item.user_address.trim();
  355. this.status = e.data._status;
  356. console.log(e);
  357. });
  358. }
  359. },
  360. // 查看快递单号
  361. towuliu(item) {
  362. let delivery_id = item.delivery_id;
  363. window.location.href = "https://m.kuaidi100.com/result.jsp?nu=" + delivery_id
  364. },
  365. //跳转到评价页面
  366. evaluate(e) {
  367. let unique = e.unique;
  368. let is_reply = e.is_reply;
  369. if (is_reply == 0) {
  370. uni.navigateTo({
  371. url: '/pages/order/evaluate?unique=' + unique
  372. });
  373. } else {
  374. uni.showToast({
  375. title: '已评价!',
  376. duration: 1500,
  377. icon: "none"
  378. });
  379. }
  380. },
  381. // 复制订单编号
  382. copyOrderId(text) {
  383. // #ifndef H5
  384. uni.setClipboardData({
  385. data: text,
  386. success: e => {
  387. uni.showToast({
  388. title: '复制成功',
  389. duration: 1500
  390. });
  391. }
  392. });
  393. // #endif
  394. // #ifdef H5
  395. // 获取需要复制的文字
  396. const copyStr = text;
  397. // 创建input标签存放需要复制的文字
  398. const oInput = document.createElement('input');
  399. // 把文字放进input中,供复制
  400. oInput.value = copyStr;
  401. // 添加文
  402. document.body.appendChild(oInput);
  403. // 选中创建的input
  404. oInput.select();
  405. // 执行复制方法, 该方法返回bool类型的结果,告诉我们是否复制成功
  406. const copyResult = document.execCommand('copy');
  407. // 操作中完成后 从Dom中删除创建的input
  408. document.body.removeChild(oInput);
  409. // 根据返回的复制结果 给用户不同的提示
  410. if (copyResult) {
  411. uni.showToast({
  412. title: '已复制到粘贴板',
  413. duration: 2000
  414. });
  415. } else {
  416. this.$api.msg('复制失败');
  417. }
  418. // #endif
  419. }
  420. }
  421. };
  422. </script>
  423. <style lang="scss">
  424. page {
  425. background: $page-color-base;
  426. }
  427. .content{
  428. padding-bottom: 120rpx;
  429. }
  430. // 快递信息
  431. .express-box {
  432. margin-top: 20rpx;
  433. width: 100%;
  434. display: flex;
  435. align-items: center;
  436. justify-content: space-between;
  437. font-size: $font-base;
  438. font-weight: 500;
  439. .express-frame {
  440. display: flex;
  441. align-items: center;
  442. justify-content: space-between;
  443. width: 100%;
  444. height: 100rpx;
  445. }
  446. .express-text {
  447. font-weight: 600;
  448. margin-right: 20rpx;
  449. width: 140rpx;
  450. display: block;
  451. }
  452. }
  453. // 订单详细
  454. .orderDetialBox {
  455. margin-top: 20rpx;
  456. padding: 0 30rpx;
  457. background-color: #ffffff;
  458. font-size: $font-base;
  459. color: $font-color-base;
  460. .item {
  461. height: 80rpx;
  462. .text {
  463. padding-left: 10rpx;
  464. }
  465. .buttom-right {
  466. width: 180rpx;
  467. border-radius: 99rpx;
  468. padding: 10rpx;
  469. text-align: center;
  470. border: 1px solid $border-color-light;
  471. }
  472. }
  473. }
  474. // 地址信息
  475. .address-box {
  476. margin-top: 20rpx;
  477. padding: 30rpx;
  478. padding-bottom: 35rpx;
  479. background-color: #ffffff;
  480. line-height: 1;
  481. .address-top {
  482. .title {
  483. font-size: $font-lg;
  484. color: $font-color-dark;
  485. }
  486. .phone {
  487. font-size: $font-base;
  488. color: $font-color-light;
  489. }
  490. }
  491. .addrdss-detail {
  492. margin-top: 30rpx;
  493. font-size: $font-base;
  494. color: $font-color-base;
  495. }
  496. .a-bg {
  497. position: absolute;
  498. bottom: 0;
  499. left: 0;
  500. width: 100%;
  501. height: 5rpx;
  502. }
  503. }
  504. .row {
  505. display: flex;
  506. align-items: center;
  507. position: relative;
  508. padding: 0 30rpx;
  509. height: 80rpx;
  510. background: #fff;
  511. .order-status {
  512. font-size: $font-lg;
  513. color: $color-red;
  514. font-weight: 500;
  515. }
  516. .refund {
  517. font-size: 30rpx;
  518. color: $font-color-dark;
  519. }
  520. .noRefund {
  521. font-size: 30rpx;
  522. color: $font-color-light;
  523. }
  524. .tit {
  525. flex-shrink: 0;
  526. width: 120rpx;
  527. font-size: 30rpx;
  528. color: $font-color-dark;
  529. }
  530. .input {
  531. text-align: right;
  532. flex: 1;
  533. font-size: 30rpx;
  534. color: $font-color-dark;
  535. &.payColor {
  536. color: $color-red;
  537. }
  538. }
  539. .iconlocation {
  540. font-size: 36rpx;
  541. color: $font-color-light;
  542. }
  543. }
  544. .add-btn {
  545. display: flex;
  546. align-items: center;
  547. justify-content: center;
  548. width: 690rpx;
  549. height: 80rpx;
  550. margin: 60rpx auto;
  551. font-size: $font-lg;
  552. color: #fff;
  553. background-color: $base-color;
  554. border-radius: 10rpx;
  555. // box-shadow: 1px 2px 5px rgba(219, 63, 96, 0.4);
  556. }
  557. /* 多条商品 */
  558. .order-item {
  559. display: flex;
  560. flex-direction: column;
  561. padding-left: 30rpx;
  562. background: #fff;
  563. margin-top: 20rpx;
  564. /* 单条商品 */
  565. .goods-box-single {
  566. display: flex;
  567. padding: 20rpx 0;
  568. .goods-img {
  569. display: block;
  570. width: 120rpx;
  571. height: 120rpx;
  572. }
  573. .right {
  574. flex: 1;
  575. display: flex;
  576. flex-direction: column;
  577. padding: 0 30rpx 0 24rpx;
  578. overflow: hidden;
  579. height: 100%;
  580. .title {
  581. align-self: flex-start;
  582. font-size: $font-base + 2rpx;
  583. color: $font-color-dark;
  584. }
  585. .title-right {
  586. flex-shrink: 0;
  587. text-align: right;
  588. align-self: flex-start;
  589. }
  590. .attr-box {
  591. font-size: $font-sm + 2rpx;
  592. color: $font-color-light;
  593. }
  594. .evaluate {
  595. line-height: 1;
  596. color: #FFFFFF;
  597. font-size: 24rpx;
  598. display: inline-block;
  599. text-align: right;
  600. padding: 10rpx 20rpx;
  601. background: #FA2740;
  602. border-radius: 10rpx;
  603. }
  604. .yesevaluate {
  605. color: #333333;
  606. font-size: 24rpx;
  607. display: inline-block;
  608. text-align: right;
  609. text {
  610. border: 2rpx solid #333333;
  611. padding: 5rpx 15rpx;
  612. }
  613. }
  614. .price {
  615. font-size: $font-base + 2rpx;
  616. color: $font-color-dark;
  617. &:before {
  618. content: '¥';
  619. font-size: $font-sm;
  620. margin: 0 2rpx 0 8rpx;
  621. }
  622. }
  623. }
  624. }
  625. }
  626. // 标题头
  627. .f-header {
  628. display: flex;
  629. align-items: center;
  630. height: 80rpx;
  631. .tit-box {
  632. // @extend %font-title-box;
  633. }
  634. .tit {
  635. // @extend %font-title;
  636. }
  637. .f-left-icon {
  638. // @extend %f-left-icon;
  639. }
  640. }
  641. .bottomBox {
  642. justify-content: space-around;
  643. position: fixed;
  644. bottom: 0;
  645. left: 0;
  646. right: 0;
  647. border-top: 1px solid $border-color-light;
  648. .buttomBottom {
  649. // width: 50%;
  650. flex: 1;
  651. text-align: center;
  652. padding: 30rpx 0;
  653. line-height: 1;
  654. color: $base-color;
  655. font-size: $font-base;
  656. background-color: #FFF;
  657. border-right: 1px solid $base-color;
  658. border-top: 1px solid $base-color;
  659. &.bgYellow {
  660. color: #FFFFFF;
  661. background: $bg-gradual;
  662. }
  663. }
  664. }
  665. .map-wrap {
  666. width: 700rpx;
  667. height: 400rpx;
  668. border-radius: 20rpx;
  669. margin: 20rpx auto;
  670. }
  671. </style>