orderDetail.vue 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628
  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 class="address-box position-relative">
  25. <view class="address-top flex">
  26. <view class="title">{{ item.real_name }}</view>
  27. <view class="phone">{{ item.user_phone }}</view>
  28. </view>
  29. <view class="addrdss-detail" v-if="item.user_address">{{ item.user_address }}</view>
  30. <image class="a-bg" :src="addressImg"></image>
  31. </view>
  32. <view class="order-item">
  33. <view class="goods-box-single"
  34. @click="navTo('/pages/product/product?id='+goodsItem.product_id+'&shopId='+goodsItem.store_id)"
  35. v-for="(goodsItem, goodsIndex) in item.cartInfo" :key="goodsIndex">
  36. <image class="goods-img" :src="goodsItem.productInfo.image" mode="aspectFill"></image>
  37. <view class="right position-relative">
  38. <view class="flex">
  39. <text class="title">{{ goodsItem.productInfo.store_name }}</text>
  40. <view class="title-right">
  41. <view class="price">{{ goodsItem.productInfo.price }}</view>
  42. <view class="attr-box">
  43. {{ goodsItem.attrInfo ? goodsItem.attrInfo.suk : '' }} x
  44. {{ goodsItem.cart_num + '' + (goodsItem.productInfo.unit_name ||'') }}
  45. </view>
  46. <!-- <view>
  47. <view v-if="status._type == 3">
  48. <view @click="evaluate(goodsItem)" class="yesevaluate"
  49. v-if="goodsItem.is_reply > 0"><text>已评价</text></view>
  50. <view @click="evaluate(goodsItem)" class="evaluate" v-if="goodsItem.is_reply < 1">
  51. <text>去评价</text>
  52. </view>
  53. </view>
  54. </view> -->
  55. </view>
  56. </view>
  57. </view>
  58. </view>
  59. </view>
  60. <view class="row b-b flex">
  61. <text class="tit">订单总价</text>
  62. <view class="input">¥{{ payAllMoney }}</view>
  63. </view>
  64. <view class="row b-b flex" v-if="vipMoney > 0">
  65. <text class="tit">vip优惠</text>
  66. <view class="input">-¥{{ vipMoney }}</view>
  67. </view>
  68. <view class="row b-b flex">
  69. <text class="tit">邮费</text>
  70. <view class="input">{{ item.pay_postage > 0 ? '¥' + item.pay_postage : '免邮费' }}</view>
  71. </view>
  72. <view class="row b-b flex" v-if="item.coupon_id > 0">
  73. <text class="tit">优惠券</text>
  74. <view class="input">-¥{{ item.coupon_price }}</view>
  75. </view>
  76. <view class="row b-b flex" v-if="item.use_certificate_num > 0">
  77. <text class="tit">水劵</text>
  78. <view class="input">-{{ item.use_certificate_num }}张</view>
  79. </view>
  80. <view class="row b-b flex" v-if="item.use_integral > 0">
  81. <text class="tit">积分抵扣</text>
  82. <view class="input">-¥{{ item.use_integral }}</view>
  83. </view>
  84. <view class="row b-b flex">
  85. <text class="tit ">实付</text>
  86. <view class="input payColor">¥{{ item.pay_price }}</view>
  87. </view>
  88. <view class="orderDetialBox">
  89. <view class="f-header m-t">
  90. <view class="f-left-icon"></view>
  91. <view class="tit-box"><text class="tit">订单信息</text></view>
  92. </view>
  93. <view class="item flex">
  94. <view class="title-left flex">
  95. <text class="title">订单编号:</text>
  96. <view class="text">{{ item.order_id }}</view>
  97. </view>
  98. <view class="buttom-right" @click="copyOrderId(item.order_id)">复制单号</view>
  99. </view>
  100. <view class="item flex">
  101. <view class="title-left flex">
  102. <text class="title">下单时间:</text>
  103. <view class="text">{{ item._add_time }}</view>
  104. </view>
  105. </view>
  106. <view class="item flex">
  107. <view class="title-left flex">
  108. <text class="title">订单类型:</text>
  109. <view class="text">{{ item | orderType }}</view>
  110. </view>
  111. </view>
  112. <view class="item flex">
  113. <view class="title-left flex">
  114. <text class="title">订单状态:</text>
  115. <view class="text">{{ item._status._title || '' }}</view>
  116. </view>
  117. </view>
  118. <view class="item flex">
  119. <view class="title-left flex">
  120. <text class="title">支付方式:</text>
  121. <view class="text">{{ item._status._payType||"" }}</view>
  122. </view>
  123. </view>
  124. </view>
  125. <view class="orderDetialBox" v-if="item.delivery_id">
  126. <view class="item flex">
  127. <view class="title-left flex">
  128. <text class="title">配送方式:</text>
  129. <view class="text">
  130. {{ item.delivery_type == 'express' ? '发货' : item.delivery_type == 'send' ? '送货' : '' }}
  131. </view>
  132. </view>
  133. </view>
  134. <view class="item flex">
  135. <view class="title-left flex">
  136. <text class="title" v-if="item.delivery_type == 'express'">快递公司:</text>
  137. <text class="title" v-if="item.delivery_type == 'send'">送货人员:</text>
  138. <view class="text">{{ item.delivery_name }}</view>
  139. </view>
  140. <view v-if="status._type != 1 && status._type != 0" class="buttom-right" @click="towuliu(item)">查看物流
  141. </view>
  142. </view>
  143. <view class="item flex">
  144. <view class="title-left flex">
  145. <text class="title" v-if="item.delivery_type == 'express'">快递单号:</text>
  146. <text class="title" v-if="item.delivery_type == 'send'">联系方式:</text>
  147. <view class="text">{{ item.delivery_id }}</view>
  148. </view>
  149. </view>
  150. </view>
  151. <view class="flex bottomBox">
  152. <view class="buttomBottom" @click="shopLi" >
  153. <template v-if="type==1">
  154. 联系商家
  155. </template>
  156. <template v-if="type==2">
  157. 联系客户
  158. </template>
  159. </view>
  160. <view class="buttomBottom bgYellow" @click="shopNext">
  161. <template v-if="type==1">
  162. 前往商家
  163. </template>
  164. <template v-if="type==2">
  165. 客户导航
  166. </template>
  167. </view>
  168. </view>
  169. </view>
  170. </template>
  171. <script>
  172. import {
  173. orderDetail
  174. } from '@/api/order.js';
  175. export default {
  176. filters: {
  177. orderType: function(item) {
  178. if (item.combination_id > 0) {
  179. return '拼团订单';
  180. } else if (item.seckill_id > 0) {
  181. return '秒杀订单';
  182. } else if (item.bargain_id > 0) {
  183. return '砍价订单';
  184. } else {
  185. return '普通订单';
  186. }
  187. }
  188. },
  189. data() {
  190. return {
  191. refund: '', //退款理由
  192. reason: '', //备注
  193. value: ['1', '2', '3', '4', '5', '6', '7', '8', 9, 10, 11, 12, 13],
  194. orderId: '',
  195. item: {
  196. _status: {}
  197. },
  198. status: [],
  199. type:1,//1用户订单2派送员订单
  200. vipMoney: 0, //vip优惠金额
  201. 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=='
  202. };
  203. },
  204. onLoad(option) {
  205. this.orderId = option.id;
  206. this.type = option.type;
  207. this.loadOrder();
  208. },
  209. computed: {
  210. payAllMoney() {
  211. return this.vipMoney + +this.item.total_price;
  212. }
  213. },
  214. methods: {
  215. navTo(url) {
  216. console.log(url);
  217. uni.navigateTo({
  218. url: url
  219. })
  220. },
  221. // 联系商家
  222. shopLi() {
  223. let phoneNumber ;
  224. if(this.type==1){
  225. phoneNumber = this.item.system_store.phone;
  226. }
  227. if(this.type==2){
  228. phoneNumber = this.item.user_phone;
  229. }
  230. uni.makePhoneCall({
  231. phoneNumber //仅为示例
  232. });
  233. },
  234. // 前往商家
  235. shopNext() {
  236. let data={
  237. latitude:'',
  238. longitude:'',
  239. }
  240. if(this.type==1){
  241. data.latitude = +this.item.system_store.latitude
  242. data.longitude = +this.item.system_store.longitude
  243. }
  244. if(this.type==2){
  245. data.latitude = +this.item.user_address_info.latitude
  246. data.longitude = +this.item.user_address_info.longitude
  247. }
  248. // 打开地图导航
  249. uni.openLocation({
  250. latitude: +this.item.system_store.latitude,
  251. longitude: +this.item.system_store.longitude,
  252. fail(e) {
  253. console.log(e);
  254. }
  255. })
  256. },
  257. // 跳转到查询快递页面
  258. expressCheck(item) {
  259. // uni.navigateTo({
  260. // url: '/pages/order/expressInfo?id=' + item.id
  261. // });
  262. },
  263. // 载入订单详细
  264. loadOrder() {
  265. let obj = this;
  266. orderDetail({}, obj.orderId).then(e => {
  267. obj.item = e.data;
  268. obj.item.cartInfo.forEach(e => {
  269. // 计算vip优惠金额
  270. obj.vipMoney += e.vip_truePrice;
  271. });
  272. obj.item.user_address = obj.item.user_address.trim();
  273. this.status = e.data._status;
  274. console.log(e);
  275. });
  276. },
  277. // 查看快递单号
  278. towuliu(item) {
  279. let delivery_id = item.delivery_id;
  280. window.location.href = "https://m.kuaidi100.com/result.jsp?nu=" + delivery_id
  281. },
  282. //跳转到评价页面
  283. evaluate(e) {
  284. let unique = e.unique;
  285. let is_reply = e.is_reply;
  286. if (is_reply == 0) {
  287. uni.navigateTo({
  288. url: '/pages/order/evaluate?unique=' + unique
  289. });
  290. } else {
  291. uni.showToast({
  292. title: '已评价!',
  293. duration: 1500,
  294. icon: "none"
  295. });
  296. }
  297. },
  298. // 复制订单编号
  299. copyOrderId(text) {
  300. // #ifndef H5
  301. uni.setClipboardData({
  302. data: text,
  303. success: e => {
  304. uni.showToast({
  305. title: '复制成功',
  306. duration: 1500
  307. });
  308. }
  309. });
  310. // #endif
  311. // #ifdef H5
  312. // 获取需要复制的文字
  313. const copyStr = text;
  314. // 创建input标签存放需要复制的文字
  315. const oInput = document.createElement('input');
  316. // 把文字放进input中,供复制
  317. oInput.value = copyStr;
  318. // 添加文
  319. document.body.appendChild(oInput);
  320. // 选中创建的input
  321. oInput.select();
  322. // 执行复制方法, 该方法返回bool类型的结果,告诉我们是否复制成功
  323. const copyResult = document.execCommand('copy');
  324. // 操作中完成后 从Dom中删除创建的input
  325. document.body.removeChild(oInput);
  326. // 根据返回的复制结果 给用户不同的提示
  327. if (copyResult) {
  328. uni.showToast({
  329. title: '已复制到粘贴板',
  330. duration: 2000
  331. });
  332. } else {
  333. this.$api.msg('复制失败');
  334. }
  335. // #endif
  336. }
  337. }
  338. };
  339. </script>
  340. <style lang="scss">
  341. page {
  342. background: $page-color-base;
  343. }
  344. .content{
  345. padding-bottom: 120rpx;
  346. }
  347. // 快递信息
  348. .express-box {
  349. margin-top: 20rpx;
  350. width: 100%;
  351. display: flex;
  352. align-items: center;
  353. justify-content: space-between;
  354. font-size: $font-base;
  355. font-weight: 500;
  356. .express-frame {
  357. display: flex;
  358. align-items: center;
  359. justify-content: space-between;
  360. width: 100%;
  361. height: 100rpx;
  362. }
  363. .express-text {
  364. font-weight: 600;
  365. margin-right: 20rpx;
  366. width: 140rpx;
  367. display: block;
  368. }
  369. }
  370. // 订单详细
  371. .orderDetialBox {
  372. margin-top: 20rpx;
  373. padding: 0 30rpx;
  374. background-color: #ffffff;
  375. font-size: $font-base;
  376. color: $font-color-base;
  377. .item {
  378. height: 80rpx;
  379. .text {
  380. padding-left: 10rpx;
  381. }
  382. .buttom-right {
  383. width: 180rpx;
  384. border-radius: 99rpx;
  385. padding: 10rpx;
  386. text-align: center;
  387. border: 1px solid $border-color-light;
  388. }
  389. }
  390. }
  391. // 地址信息
  392. .address-box {
  393. margin-top: 20rpx;
  394. padding: 30rpx;
  395. padding-bottom: 35rpx;
  396. background-color: #ffffff;
  397. line-height: 1;
  398. .address-top {
  399. .title {
  400. font-size: $font-lg;
  401. color: $font-color-dark;
  402. }
  403. .phone {
  404. font-size: $font-base;
  405. color: $font-color-light;
  406. }
  407. }
  408. .addrdss-detail {
  409. margin-top: 30rpx;
  410. font-size: $font-base;
  411. color: $font-color-base;
  412. }
  413. .a-bg {
  414. position: absolute;
  415. bottom: 0;
  416. left: 0;
  417. width: 100%;
  418. height: 5rpx;
  419. }
  420. }
  421. .row {
  422. display: flex;
  423. align-items: center;
  424. position: relative;
  425. padding: 0 30rpx;
  426. height: 80rpx;
  427. background: #fff;
  428. .order-status {
  429. font-size: $font-lg;
  430. color: $color-red;
  431. font-weight: 500;
  432. }
  433. .refund {
  434. font-size: 30rpx;
  435. color: $font-color-dark;
  436. }
  437. .noRefund {
  438. font-size: 30rpx;
  439. color: $font-color-light;
  440. }
  441. .tit {
  442. flex-shrink: 0;
  443. width: 120rpx;
  444. font-size: 30rpx;
  445. color: $font-color-dark;
  446. }
  447. .input {
  448. text-align: right;
  449. flex: 1;
  450. font-size: 30rpx;
  451. color: $font-color-dark;
  452. &.payColor {
  453. color: $color-red;
  454. }
  455. }
  456. .iconlocation {
  457. font-size: 36rpx;
  458. color: $font-color-light;
  459. }
  460. }
  461. .add-btn {
  462. display: flex;
  463. align-items: center;
  464. justify-content: center;
  465. width: 690rpx;
  466. height: 80rpx;
  467. margin: 60rpx auto;
  468. font-size: $font-lg;
  469. color: #fff;
  470. background-color: $base-color;
  471. border-radius: 10rpx;
  472. // box-shadow: 1px 2px 5px rgba(219, 63, 96, 0.4);
  473. }
  474. /* 多条商品 */
  475. .order-item {
  476. display: flex;
  477. flex-direction: column;
  478. padding-left: 30rpx;
  479. background: #fff;
  480. margin-top: 20rpx;
  481. /* 单条商品 */
  482. .goods-box-single {
  483. display: flex;
  484. padding: 20rpx 0;
  485. .goods-img {
  486. display: block;
  487. width: 120rpx;
  488. height: 120rpx;
  489. }
  490. .right {
  491. flex: 1;
  492. display: flex;
  493. flex-direction: column;
  494. padding: 0 30rpx 0 24rpx;
  495. overflow: hidden;
  496. height: 100%;
  497. .title {
  498. align-self: flex-start;
  499. font-size: $font-base + 2rpx;
  500. color: $font-color-dark;
  501. }
  502. .title-right {
  503. flex-shrink: 0;
  504. text-align: right;
  505. align-self: flex-start;
  506. }
  507. .attr-box {
  508. font-size: $font-sm + 2rpx;
  509. color: $font-color-light;
  510. }
  511. .evaluate {
  512. color: #FFFFFF;
  513. font-size: 24rpx;
  514. display: inline-block;
  515. text-align: right;
  516. text {
  517. background: #FA2740;
  518. padding: 5rpx 15rpx;
  519. }
  520. }
  521. .yesevaluate {
  522. color: #333333;
  523. font-size: 24rpx;
  524. display: inline-block;
  525. text-align: right;
  526. text {
  527. border: 2rpx solid #333333;
  528. padding: 5rpx 15rpx;
  529. }
  530. }
  531. .price {
  532. font-size: $font-base + 2rpx;
  533. color: $font-color-dark;
  534. &:before {
  535. content: '¥';
  536. font-size: $font-sm;
  537. margin: 0 2rpx 0 8rpx;
  538. }
  539. }
  540. }
  541. }
  542. }
  543. // 标题头
  544. .f-header {
  545. display: flex;
  546. align-items: center;
  547. height: 80rpx;
  548. .tit-box {
  549. // @extend %font-title-box;
  550. }
  551. .tit {
  552. // @extend %font-title;
  553. }
  554. .f-left-icon {
  555. // @extend %f-left-icon;
  556. }
  557. }
  558. .bottomBox {
  559. justify-content: space-around;
  560. position: fixed;
  561. bottom: 0;
  562. left: 0;
  563. right: 0;
  564. border-top: 1px solid $border-color-light;
  565. .buttomBottom {
  566. width: 50%;
  567. text-align: center;
  568. padding: 30rpx 80rpx;
  569. line-height: 1;
  570. color: $base-color;
  571. font-size: $font-base;
  572. background-color: #FFF;
  573. &.bgYellow {
  574. color: #FFFFFF;
  575. background: $bg-gradual;
  576. }
  577. }
  578. }
  579. </style>