index.vue 30 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423
  1. <template>
  2. <view :style="colorStyle" v-if="orderDetail.orderState">
  3. <view class="wait_panel">
  4. <view class="w1">
  5. <view class="imageView">
  6. <image v-if="orderDetail.orderState == 5" src="http://www.gzzzyd.com/groupon/home_slices/取消订单小@2x.png" mode="scaleToFill" />
  7. <image v-else-if="orderDetail.orderState == 4" src="http://www.gzzzyd.com/groupon/home_slices/已完成@2x.png" mode="scaleToFill" />
  8. <image v-else-if="orderDetail.orderState == 8" src="http://www.gzzzyd.com/groupon/home_slices/退款中@2x.png" mode="scaleToFill" />
  9. <image v-else src="http://www.gzzzyd.com/groupon/order_details/时间.png" mode="scaleToFill" />
  10. </view>
  11. <text v-if="orderDetail.orderState == 4" class="success_status">{{orderDetail.orderStateDesc}}</text>
  12. <text v-else-if="orderDetail.orderState == 8" class="refund_status">{{orderDetail.afterSalesDesc}}</text>
  13. <text v-else-if="orderDetail.orderState > 4" class="refund_status">{{orderDetail.orderStateDesc}}</text>
  14. <text v-else class="status">{{orderDetail.orderStateDesc}}</text>
  15. </view>
  16. <view class="w2" v-if="orderDetail.orderState == 1">
  17. 需付款: <text class="red">¥{{orderDetail.paymentAmount}}</text>
  18. <text class="" style="margin-right:20rpx;" >
  19. 剩余:
  20. </text>
  21. <u-count-down :time="orderDetail.remainTime * 1000" format="mm分ss秒"></u-count-down>
  22. </view>
  23. <view class="w2" v-if="orderDetail.orderState == 2">
  24. 取货码
  25. </view>
  26. <view class="w3">
  27. <button v-if="orderDetail.orderState == 1" @click="goPay(orderDetail)">
  28. 去支付
  29. </button>
  30. <button v-if="orderDetail.orderState == 2">
  31. {{orderDetail.pickupCode}}
  32. </button>
  33. </view>
  34. </view>
  35. <view class="all-products-body" v-for="(item, index) in orderDetail.goodsList" :key="index">
  36. <view class="all-products-item " @click="addGoodPopupShow = true">
  37. <image
  38. :src="item.goodsImage"
  39. mode="scaleToFill" />
  40. <view class="all-products-item-content">
  41. <view class="all-products-item-content-t">
  42. {{item.goodsName}}
  43. </view>
  44. <view class="all-products-item-content-b">
  45. <view style="display:flex;">
  46. <text class="red"> ¥{{item.goodsPrice}}</text>
  47. </view>
  48. <view>
  49. <view class="count"> x {{item.goodsNum}}</view>
  50. </view>
  51. </view>
  52. </view>
  53. </view>
  54. </view>
  55. <view class='order-submission'>
  56. <view>
  57. <view class="nav acea-row">
  58. <view class="item font-num" :class="shippingType == 0 ? 'on' : 'on2'" @tap="addressType(0)"
  59. v-if='store_self_mention && is_shipping'></view>
  60. <view class="item font-num" :class="shippingType == 1 ? 'on' : 'on2'" @tap="addressType(1)"
  61. v-if='store_self_mention && is_shipping'></view>
  62. </view>
  63. <view class='address-info' @tap='onAddress'>
  64. <block>
  65. <view class="a-t">
  66. <view class="t1">
  67. 自提门店
  68. </view>
  69. <view class="t2" v-if="orderDetail.orderState == 1" @click="getSelfTakeList">
  70. 更换自提网点
  71. <image src="http://www.gzzzyd.com/groupon/order_details/切换_面24@2x.png" mode="scaleToFill" />
  72. </view>
  73. </view>
  74. <view class="a-m">
  75. <view class="am1">
  76. <view class="am1-1">
  77. {{orderDetail.selfTake.name}}
  78. </view>
  79. <view class="am1-2">
  80. 距您{{orderDetail.selfTake.distanceDesc}}
  81. <image src="http://www.gzzzyd.com/groupon/order_details/距离@2x.png" mode="scaleToFill" />
  82. </view>
  83. </view>
  84. <view class="am2">
  85. {{orderDetail.selfTake.address}}
  86. </view>
  87. <view class="am3">
  88. 营业时间 {{orderDetail.selfTake.busStartTimeDesc}}-{{orderDetail.selfTake.busEndTimeDesc}}
  89. </view>
  90. </view>
  91. <view class="a-b">
  92. <view class="a-b1">
  93. 对接团长:
  94. <text class="red">
  95. {{orderDetail.commander}}
  96. </text>
  97. </view>
  98. <view class="a-b2">
  99. <image src="http://www.gzzzyd.com/groupon/order_details/微信@2x.png" mode="scaleToFill" />
  100. <image src="http://www.gzzzyd.com/groupon/order_details/电话键盘_填充@2x.png" mode="scaleToFill" />
  101. </view>
  102. </view>
  103. </block>
  104. </view>
  105. <view class="payment-details">
  106. <view class="p_box" style="margin-bottom: 20rpx;" v-if="orderDetail.orderState != 8">
  107. <view class="p-t">
  108. 订单信息
  109. </view>
  110. <view class="p-b-item">
  111. <view class="item-lable">订单编号</view>
  112. <view class="item-value2">{{orderDetail.orderNo}}</view>
  113. </view>
  114. <view class="p-b-item">
  115. <view class="item-lable">下单时间</view>
  116. <view class="item-value2">{{orderDetail.createTime}}</view>
  117. </view>
  118. <view class="p-b-item" v-if="orderDetail.orderState == 2 || orderDetail.orderState == 4">
  119. <view class="item-lable">支付方式</view>
  120. <view class="item-value2">{{orderDetail.paymentModeDesc}}</view>
  121. </view>
  122. <view class="p-b-item" v-if="orderDetail.orderState == 2 || orderDetail.orderState == 4">
  123. <view class="item-lable">支付时间</view>
  124. <view class="item-value2">{{orderDetail.paymentTime}}</view>
  125. </view>
  126. </view>
  127. <view class="p_box" v-if="orderDetail.orderState != 8">
  128. <view class="p-t">
  129. 付款明细
  130. </view>
  131. <view class="p-b-item">
  132. <view class="item-lable">商品金额</view>
  133. <view class="item-value">¥{{orderDetail.totalAmount}}</view>
  134. </view>
  135. <view class="p-b-item">
  136. <view class="item-lable">积分抵扣</view>
  137. <view class="item-value">¥0</view>
  138. </view>
  139. <view class="p-b-item">
  140. <view class="item-lable">总计金额</view>
  141. <view class="item-value">¥{{orderDetail.paymentAmount}}</view>
  142. </view>
  143. </view>
  144. <view class="p_box" v-if="orderDetail.orderState == 8">
  145. <view class="p-t">
  146. 售后信息
  147. </view>
  148. <view class="p-b-item">
  149. <view class="item-lable">订单编号</view>
  150. <view class="item-value2">{{orderDetail.orderNo}}</view>
  151. </view>
  152. <view class="p-b-item">
  153. <view class="item-lable">售后原因</view>
  154. <view class="item-value2">{{orderDetail.afterSalesReason}}</view>
  155. </view>
  156. <view class="p-b-item">
  157. <view class="item-lable">申请时间</view>
  158. <view class="item-value2">{{orderDetail.refundApplyTime}}</view>
  159. </view>
  160. <view class="p-b-item">
  161. <view class="item-lable">售后编号</view>
  162. <view class="item-value2">{{orderDetail.refundNo}}</view>
  163. </view>
  164. <view class="p-b-item">
  165. <view class="item-lable">退款方式</view>
  166. <view class="item-value2">原路返还</view>
  167. </view>
  168. <view class="p-b-item">
  169. <view class="item-lable">退款金额</view>
  170. <view class="item-value">¥{{orderDetail.refundAmount}}</view>
  171. </view>
  172. <view class="p-b-item" v-if="orderDetail.afterSales">
  173. <view class="item-lable">物流单号</view>
  174. <view class="item-value2">{{orderDetail.afterSales.logisticsNo || ''}}</view>
  175. </view>
  176. </view>
  177. <view class="p_box" v-if="orderDetail.store">
  178. <view class="p-t">
  179. 供应商信息
  180. </view>
  181. <view class="p-b-item">
  182. <view class="item-lable">名称</view>
  183. <view class="item-value2">{{orderDetail.store.name}}</view>
  184. </view>
  185. <view class="p-b-item">
  186. <view class="item-lable">电话</view>
  187. <view class="item-value2">{{orderDetail.store.tel}}</view>
  188. </view>
  189. <view class="p-b-item">
  190. <view class="item-lable">地址</view>
  191. <view class="item-value2">{{orderDetail.store.storeAddress}}</view>
  192. </view>
  193. </view>
  194. </view>
  195. <my-swiper :type=4 ></my-swiper>
  196. </view>
  197. <view :style="{height:'100rpx'}"></view>
  198. <view class='footer op-area'>
  199. <!-- <button class="info-btn" v-if="orderDetail.orderState == 4" @click="RefundShow = true">申请售后</button>-->
  200. <button class="info-btn" v-if="orderDetail.orderState == 1" @click="cancelOrder()">取消订单</button>
  201. <button class="info-btn" v-if="!orderDetail.afterSales.logisticsNo" @click="bindLogisticsShow(orderDetail.afterSales.afterSalesNo)">填写物流单号</button>
  202. </view>
  203. </view>
  204. <u-popup :show="RefundShow" @close="RefundShow = false" @open=" ">
  205. <view class="Refund_view">
  206. <view class="Refund_view_title">请选择退货/退款原因</view>
  207. <radio-group class="Refund_view_radio" name="header_type" @change="changeTitleType">
  208. <label>
  209. <radio class="disabled" value="1" /><text>退货/退款原因</text>
  210. </label>
  211. <label>
  212. <radio value="2" /><text>退货/退款原因</text>
  213. </label>
  214. </radio-group>
  215. <button class="Refund_view_btn">
  216. 确定
  217. </button>
  218. </view>
  219. </u-popup>
  220. <u-popup :show="selfTakeShow" @close="selfTakeShow = false">
  221. <view class="box_3 flex-col">
  222. <image @click="selfTakeShow = false"
  223. class="icon_2"
  224. referrerpolicy="no-referrer"
  225. src="/static/images/X.png"
  226. />
  227. <text class="text_25">切换取货点</text>
  228. <scroll-view scroll-y="true" class="scroll-y">
  229. <view class="list_1 flex-col">
  230. <view @click="clickSelfTake(item)"
  231. class="list-items_1 flex-col"
  232. v-for="(item, index) in selfTakeList"
  233. :key="index">
  234. <view class="group_14 flex-row justify-between">
  235. <view class="flex-col">
  236. <text class="text_26" >{{item.name}}</text>
  237. <text class="text_27" >{{item.address}}</text>
  238. </view>
  239. <view class="flex-row justify-between">
  240. <text class="text-group_9" >距您{{item.distanceDesc}}</text>
  241. <image class="icon_3"
  242. src="http://www.gzzzyd.com/groupon/order_details/距离@2x.png"/>
  243. </view>
  244. </view>
  245. <view class="group_15 flex-row">
  246. <view class="tag_1 flex-col">
  247. <text class="text_28">营业时间: {{item.busStartTimeDesc}}-{{item.busEndTimeDesc}}</text>
  248. </view>
  249. </view>
  250. </view>
  251. </view>
  252. </scroll-view>
  253. </view>
  254. </u-popup>
  255. <u-popup :show="showWl" :round="10" mode="center" @close="showWl = false">
  256. <view>
  257. <u--input
  258. placeholder="请输入物流单号"
  259. border="surround"
  260. clearable
  261. v-model="wlNo"
  262. ></u--input>
  263. <u-button class="custom-style" text="提交" @click="bindLogistics"></u-button>
  264. </view>
  265. </u-popup>
  266. <payment :payMode="payMode" :pay_close="pay_close" @onChangeFun="onChangeFun" :order_id="pay_order_id"
  267. :totalPrice="totalPrice"></payment>
  268. </view>
  269. </template>
  270. <script>
  271. import couponListWindow from '@/components/couponListWindow';
  272. import addressWindow from '@/components/addressWindow';
  273. import {bindLogisticsNo} from '@/api/groupon.js'
  274. import home from '@/components/home';
  275. import {
  276. toLogin
  277. } from '@/libs/login.js';
  278. import {
  279. mapGetters
  280. } from "vuex";
  281. // #ifdef MP
  282. import authorize from '@/components/Authorize';
  283. // #endif
  284. import payment from '@/components/payment';
  285. import colors from "@/mixins/color";
  286. import {getUserOrderDetail, orderCancel, modifySelfTake,getAdsList} from '@/api/home.js';
  287. import {getGrouponSelfTakeList} from '@/api/groupon.js';
  288. export default {
  289. components: {
  290. payment,
  291. couponListWindow,
  292. addressWindow,
  293. home,
  294. // #ifdef MP
  295. authorize
  296. // #endif
  297. },
  298. mixins: [colors],
  299. data () {
  300. return {
  301. showWl: false,
  302. wlNo: '',
  303. pay_orderId: '',
  304. totalPrice: '0',
  305. pay_order_id: '',
  306. pay_close: false,
  307. payMode: [{
  308. name: this.$t(`微信支付`),
  309. icon: 'icon-weixinzhifu',
  310. value: 'weixin',
  311. title: this.$t(`使用微信快捷支付`),
  312. payStatus: true
  313. }],
  314. selfTakeShow: false,
  315. RefundShow: false,
  316. confirm: '', //自定义留言
  317. date: this.$t(`请选择`),
  318. time: this.$t(`请选择`),
  319. canvasWidth: "",
  320. canvasHeight: "",
  321. canvasStatus: false,
  322. newImg: [],
  323. orderDetail: {},
  324. selfTakeList: [],
  325. orderId:''
  326. }
  327. },
  328. computed: mapGetters(['isLogin']),
  329. // watch: {
  330. // startDate() {
  331. // return this.getDate('start');
  332. // },
  333. // endDate() {
  334. // return this.getDate('end');
  335. // }
  336. // },
  337. onLoad (options) {
  338. this.from = 'routine'
  339. console.log(options);
  340. this.orderId = options.orderId;
  341. this.getOrderDetail(this.orderId, options.afterSalesId)
  342. },
  343. /**
  344. * 生命周期函数--监听页面显示
  345. */
  346. onShow: function () {
  347. let _this = this
  348. uni.$on("handClick", res => {
  349. if (res) {
  350. _this.system_store = res.address
  351. }
  352. // 清除监听
  353. uni.$off('handClick');
  354. })
  355. },
  356. methods: {
  357. /**
  358. * 打开支付组件
  359. *
  360. */
  361. goPay: function (item) {
  362. this.$set(this, 'pay_close', true);
  363. this.$set(this, 'pay_order_id', item.orderNo);
  364. this.$set(this, 'pay_orderId', item.orderId);
  365. this.$set(this, 'totalPrice', item.paymentAmount);
  366. },
  367. /**
  368. * 支付成功回调
  369. *
  370. */
  371. pay_complete: function () {
  372. this.pay_close = false;
  373. this.pay_order_id = '';
  374. this.pay_orderId = '';
  375. this.getOrderDetail(this.orderId)
  376. uni.$u.toast("支付成功")
  377. },
  378. /**
  379. * 支付失败回调
  380. *
  381. */
  382. pay_fail: function () {
  383. this.pay_close = false;
  384. this.pay_order_id = '';
  385. this.pay_orderId = '';
  386. uni.$u.toast("支付失败")
  387. },
  388. /**
  389. * 事件回调
  390. *
  391. */
  392. onChangeFun: function (e) {
  393. console.log(e)
  394. this.pay_close = false;
  395. },
  396. clickSelfTake(item){
  397. this.selfTakeShow =false;
  398. //item 选中的自提点
  399. this.orderDetail.selfTake = item;
  400. this.modifySelfTake(item.id);
  401. },
  402. cancelOrder() {
  403. let _this = this;
  404. uni.showModal({
  405. title: '提示',
  406. content: '确定取消次订单',
  407. confirmText: '确定',
  408. cancelText: '我再想想',
  409. success(res) {
  410. if (res.confirm) {
  411. orderCancel(_this.orderDetail.orderId).then(res => {
  412. _this.getOrderDetail(_this.orderDetail.orderId);
  413. return _this.$util.Tips({
  414. title: _this.$t(`取消成功`),
  415. icon: 'success'
  416. });
  417. }).catch(err => {
  418. return _this.$util.Tips({
  419. title: err || _this.$t(`取消失败`)
  420. });
  421. });
  422. }
  423. }
  424. })
  425. },
  426. afterSales () {
  427. },
  428. getOrderDetail(orderId, afterSalesId) {
  429. uni.showLoading({
  430. title: '加载中...'
  431. });
  432. let longitude = uni.getStorageSync('user_longitude');
  433. let latitude = uni.getStorageSync('user_latitude');
  434. let param = {
  435. orderId: orderId,
  436. longitude: longitude,
  437. latitude: latitude
  438. };
  439. if (afterSalesId != null && afterSalesId != 'null') {
  440. param.afterSalesId = afterSalesId;
  441. }
  442. getUserOrderDetail(param).then(res => {
  443. uni.hideLoading();
  444. this.orderDetail = res.data
  445. }).catch(err => {
  446. uni.hideLoading();
  447. return that.$util.Tips({
  448. title: err || that.$t(`获取订单详情失败`)
  449. });
  450. });
  451. },
  452. /**
  453. * 获取自提点列表
  454. */
  455. getSelfTakeList() {
  456. let longitude = uni.getStorageSync('user_longitude');
  457. let latitude = uni.getStorageSync('user_latitude');
  458. getGrouponSelfTakeList({
  459. longitude: longitude,
  460. latitude: latitude,
  461. grouponId: this.orderDetail.grouponId
  462. }).then(res => {
  463. this.selfTakeList = res.data;
  464. this.selfTakeShow = true;
  465. })
  466. },
  467. /**
  468. * 修改自提点
  469. * @param {Object} selfTakeId
  470. */
  471. modifySelfTake(selfTakeId) {
  472. console.log(this.orderDetail);
  473. modifySelfTake({
  474. selfTakeId: selfTakeId,
  475. orderId: this.orderDetail.orderId
  476. }).then(res => {
  477. this.selfTakeShow = false;
  478. this.getOrderDetail(this.orderDetail.orderId)
  479. })
  480. },
  481. bindLogisticsShow(item) {
  482. this.afterSalesNo = item;
  483. this.showWl = true;
  484. },
  485. bindLogistics() {
  486. let that = this;
  487. console.log(that.wlNo)
  488. if (that.wlNo.trim().length < 1) {
  489. return that.$util.Tips({
  490. title: '请输入物流单号'
  491. });
  492. }
  493. bindLogisticsNo({
  494. afterSalesNo: that.afterSalesNo,
  495. logisticsNo: that.wlNo
  496. }).then(res => {
  497. that.showWl = false;
  498. return that.$util.Tips({
  499. title: '绑定成功',
  500. icon: 'success'
  501. });
  502. })
  503. },
  504. }
  505. }
  506. </script>
  507. <style lang="scss" scoped>
  508. @import "/static/css/common.css";
  509. /deep/uni-checkbox[disabled] .uni-checkbox-input {
  510. background-color: #eee;
  511. }
  512. .alipaysubmit {
  513. display: none;
  514. }
  515. .order-submission .line {
  516. width: 100%;
  517. height: 3rpx;
  518. }
  519. .order-submission .line image {
  520. width: 100%;
  521. height: 100%;
  522. display: block;
  523. }
  524. .order-submission .address {
  525. padding: 28rpx 30rpx;
  526. background-color: #fff;
  527. box-sizing: border-box;
  528. }
  529. .order-submission .address .addressCon {
  530. width: 610rpx;
  531. font-size: 26rpx;
  532. color: #666;
  533. }
  534. .order-submission .address .addressCon .name {
  535. font-size: 30rpx;
  536. color: #282828;
  537. font-weight: bold;
  538. margin-bottom: 10rpx;
  539. }
  540. .order-submission .address .addressCon .name .phone {
  541. margin-left: 50rpx;
  542. }
  543. .order-submission .address .addressCon .default {
  544. margin-right: 12rpx;
  545. }
  546. .order-submission .address .addressCon .setaddress {
  547. color: #333;
  548. font-size: 28rpx;
  549. }
  550. .order-submission .address .iconfont {
  551. font-size: 35rpx;
  552. color: #707070;
  553. }
  554. .order-submission .allAddress {
  555. width: 100%;
  556. background: linear-gradient(to bottom, var(--view-theme) 0%, #f5f5f5 100%);
  557. padding-top: 100rpx;
  558. margin-bottom: 12rpx;
  559. }
  560. .order-submission .allAddress .nav {
  561. width: 710rpx;
  562. margin: 0 auto;
  563. }
  564. .order-submission .allAddress .nav .item {
  565. width: 355rpx;
  566. }
  567. .order-submission .allAddress .nav .item.on {
  568. position: relative;
  569. width: 250rpx;
  570. }
  571. .order-submission .allAddress .nav .item.on::before {
  572. position: absolute;
  573. bottom: 0;
  574. content: "快递配送";
  575. font-size: 28rpx;
  576. display: block;
  577. height: 0;
  578. width: 336rpx;
  579. border-width: 0 20rpx 80rpx 0;
  580. border-style: none solid solid;
  581. border-color: transparent transparent #fff;
  582. z-index: 2;
  583. border-radius: 7rpx 30rpx 0 0;
  584. text-align: center;
  585. line-height: 80rpx;
  586. }
  587. .order-submission .allAddress .nav .item:nth-of-type(2).on::before {
  588. content: "到店自提";
  589. border-width: 0 0 80rpx 20rpx;
  590. border-radius: 30rpx 7rpx 0 0;
  591. }
  592. .order-submission .allAddress .nav .item.on2 {
  593. position: relative;
  594. }
  595. .order-submission .allAddress .nav .item.on2::before {
  596. position: absolute;
  597. bottom: 0;
  598. content: "到店自提";
  599. font-size: 28rpx;
  600. display: block;
  601. height: 0;
  602. width: 400rpx;
  603. border-width: 0 0 60rpx 60rpx;
  604. border-style: none solid solid;
  605. border-color: transparent transparent rgba(255, 255, 255, 0.6);
  606. border-radius: 40rpx 6rpx 0 0;
  607. text-align: center;
  608. line-height: 60rpx;
  609. }
  610. .order-submission .allAddress .nav .item:nth-of-type(1).on2::before {
  611. content: "快递配送";
  612. border-width: 0 60rpx 60rpx 0;
  613. border-radius: 6rpx 40rpx 0 0;
  614. }
  615. .order-submission .allAddress .address {
  616. width: 710rpx;
  617. height: 150rpx;
  618. margin: 0 auto;
  619. }
  620. .order-submission .allAddress .line {
  621. width: 710rpx;
  622. margin: 0 auto;
  623. }
  624. .order-submission .wrapper .item .discount .placeholder {
  625. color: #ccc;
  626. }
  627. .placeholder-textarea {
  628. position: relative;
  629. .placeholder {
  630. position: absolute;
  631. color: #ccc;
  632. top: 26rpx;
  633. left: 30rpx;
  634. }
  635. }
  636. .order-submission .wrapper {
  637. background-color: #fff;
  638. margin-top: 13rpx;
  639. }
  640. .order-submission .wrapper .item {
  641. padding: 27rpx 30rpx;
  642. font-size: 30rpx;
  643. color: #282828;
  644. border-bottom: 1px solid #f0f0f0;
  645. .mark {
  646. background-color: #f9f9f9;
  647. width: 345px;
  648. height: 70px;
  649. border-radius: 1px;
  650. margin-top: 15px;
  651. padding: 12px 14px;
  652. color: #ccc;
  653. font-size: 28rpx;
  654. box-sizing: border-box;
  655. }
  656. .mark-msg {
  657. color: #333;
  658. font-size: 32rpx;
  659. }
  660. }
  661. .order-submission .wrapper .item .discount {
  662. font-size: 30rpx;
  663. color: #999;
  664. }
  665. .order-submission .wrapper .item .discount input {
  666. text-align: end;
  667. }
  668. .order-submission .wrapper .item .discount .iconfont {
  669. color: #515151;
  670. font-size: 30rpx;
  671. margin-left: 15rpx;
  672. }
  673. .order-submission .wrapper .item .discount .num {
  674. font-size: 32rpx;
  675. margin-right: 20rpx;
  676. }
  677. .order-submission .wrapper .item .shipping {
  678. font-size: 30rpx;
  679. color: #999;
  680. position: relative;
  681. padding-right: 58rpx;
  682. }
  683. .order-submission .wrapper .item .shipping .iconfont {
  684. font-size: 35rpx;
  685. color: #707070;
  686. position: absolute;
  687. right: 0;
  688. top: 50%;
  689. transform: translateY(-50%);
  690. margin-left: 30rpx;
  691. }
  692. .order-submission .wrapper .item textarea {
  693. background-color: #f9f9f9;
  694. width: 690rpx;
  695. height: 140rpx;
  696. border-radius: 3rpx;
  697. margin-top: 30rpx;
  698. padding: 25rpx 28rpx;
  699. box-sizing: border-box;
  700. }
  701. .order-submission .wrapper .item .placeholder {
  702. color: #ccc;
  703. font-size: 28rpx;
  704. }
  705. .order-submission .wrapper .item .list {
  706. margin-top: 35rpx;
  707. }
  708. .order-submission .wrapper .item .list .payItem {
  709. border: 1px solid #eee;
  710. border-radius: 6rpx;
  711. height: 86rpx;
  712. width: 100%;
  713. box-sizing: border-box;
  714. margin-top: 20rpx;
  715. font-size: 28rpx;
  716. color: #282828;
  717. }
  718. .order-submission .wrapper .item .list .payItem.on {
  719. border-color: #fc5445;
  720. color: #e93323;
  721. }
  722. .order-submission .wrapper .item .list .payItem .name {
  723. width: 50%;
  724. text-align: center;
  725. border-right: 1px solid #eee;
  726. padding-left: 80rpx;
  727. }
  728. .order-submission .wrapper .item .list .payItem .name .iconfont {
  729. width: 44rpx;
  730. height: 44rpx;
  731. border-radius: 50%;
  732. text-align: center;
  733. line-height: 44rpx;
  734. background-color: #fe960f;
  735. color: #fff;
  736. font-size: 30rpx;
  737. margin-right: 15rpx;
  738. }
  739. .order-submission .wrapper .item .list .payItem .name .iconfont.icon-weixin2 {
  740. background-color: #41b035;
  741. }
  742. .order-submission .wrapper .item .list .payItem .name .iconfont.icon-zhifubao {
  743. background-color: #1677FF;
  744. }
  745. .order-submission .wrapper .item .list .payItem .tip {
  746. width: 49%;
  747. text-align: center;
  748. font-size: 26rpx;
  749. color: #aaa;
  750. }
  751. .order-submission .moneyList {
  752. margin-top: 12rpx;
  753. background-color: #fff;
  754. padding: 30rpx;
  755. }
  756. .order-submission .moneyList .item {
  757. font-size: 28rpx;
  758. color: #282828;
  759. }
  760. .order-submission .moneyList .item~.item {
  761. margin-top: 20rpx;
  762. }
  763. .order-submission .moneyList .item .money {
  764. color: #868686;
  765. }
  766. .order-submission .footer {
  767. width: 100%;
  768. height: 100rpx;
  769. background-color: #fff;
  770. padding: 0 30rpx;
  771. font-size: 28rpx;
  772. color: #333;
  773. box-sizing: border-box;
  774. position: fixed;
  775. bottom: 0;
  776. left: 0;
  777. z-index: 9;
  778. }
  779. .order-submission .footer .settlement {
  780. font-size: 30rpx;
  781. color: #fff;
  782. width: 240rpx;
  783. height: 70rpx;
  784. background-color: var(--view-theme);
  785. border-radius: 50rpx;
  786. text-align: center;
  787. line-height: 70rpx;
  788. }
  789. .footer .transparent {
  790. opacity: 0
  791. }
  792. .confirm {
  793. text-align: right;
  794. font-size: 22rpx;
  795. }
  796. .confirmImg {
  797. width: 100%;
  798. .img {
  799. width: 136rpx;
  800. height: 136rpx;
  801. }
  802. .pictrue {
  803. width: 136rpx;
  804. height: 136rpx;
  805. box-sizing: border-box;
  806. margin: 18rpx;
  807. margin-bottom: 35rpx;
  808. position: relative;
  809. font-size: 22rpx;
  810. color: #bbb;
  811. .del {
  812. position: absolute;
  813. top: 0;
  814. right: 0;
  815. }
  816. }
  817. .bor {
  818. border: 1rpx solid #ddd;
  819. }
  820. }
  821. .fontC {
  822. color: grey;
  823. }
  824. .all-products-body {
  825. padding-top: 30rpx;
  826. background: #fff;
  827. .all-products-item {
  828. display: flex;
  829. padding-bottom: 20rpx;
  830. background: #fff;
  831. padding-left: 15rpx;
  832. image {
  833. width: 128rpx;
  834. height: 128rpx;
  835. border-radius: 4rpx;
  836. }
  837. .all-products-item-content {
  838. width: calc(100% - 128rpx);
  839. display: flex;
  840. flex-direction: column;
  841. padding-left: 15rpx;
  842. .all-products-item-content-t {
  843. flex: 1;
  844. font-size: 24rpx;
  845. font-weight: 400;
  846. color: #333333;
  847. height: 80rpx;
  848. line-height: 40rpx;
  849. width: 550rpx;
  850. display: -webkit-box;
  851. -webkit-box-orient: vertical;
  852. -webkit-line-clamp: 2;
  853. overflow: hidden;
  854. text-overflow: ellipsis;
  855. }
  856. .all-products-item-content-b {
  857. flex: 1;
  858. font-size: 28rpx;
  859. font-weight: 500;
  860. height: 48rpx;
  861. line-height: 48rpx;
  862. display: flex;
  863. justify-content: space-between;
  864. .red {
  865. display: block;
  866. font-size: 28rpx;
  867. font-weight: 500;
  868. color: #B22338 !important;
  869. margin-right: 10rpx;
  870. }
  871. .line-thr {
  872. display: block;
  873. font-size: 28rpx;
  874. font-weight: 400;
  875. color: #999999;
  876. text-decoration: line-through;
  877. }
  878. .count {
  879. font-size: 24rpx;
  880. font-weight: 400;
  881. color: #999999;
  882. margin-right: 30rpx;
  883. }
  884. }
  885. }
  886. }
  887. }
  888. .address-info {
  889. padding: 30rpx 0;
  890. background: white;
  891. .a-t {
  892. padding: 0 30rpx;
  893. display: flex;
  894. justify-content: space-between;
  895. height: 44rpx;
  896. margin-bottom: 20rpx;
  897. .t1 {
  898. height: 44rpx;
  899. font-size: 32rpx;
  900. font-weight: bolder;
  901. color: #111111;
  902. line-height: 44rpx;
  903. }
  904. .t2 {
  905. height: 34rpx;
  906. font-size: 24rpx;
  907. font-weight: 400;
  908. color: #B42A3E;
  909. line-height: 34rpx;
  910. image {
  911. margin-left: 30rpx;
  912. height: 34rpx;
  913. width: 34rpx;
  914. vertical-align: middle;
  915. }
  916. }
  917. }
  918. .a-m {
  919. padding: 0 30rpx;
  920. .am1 {
  921. display: flex;
  922. justify-content: space-between;
  923. margin-bottom: 20rpx;
  924. .am1-1 {
  925. height: 40rpx;
  926. font-size: 28rpx;
  927. font-weight: 400;
  928. color: #111111;
  929. line-height: 40rpx;
  930. }
  931. .am1-2 {
  932. height: 36rpx;
  933. font-size: 20rpx;
  934. font-weight: 400;
  935. color: #666666;
  936. line-height: 36rpx;
  937. image {
  938. margin-left: 30rpx;
  939. vertical-align: middle;
  940. height: 34rpx;
  941. width: 34rpx;
  942. }
  943. }
  944. }
  945. .am2 {
  946. margin-bottom: 20rpx;
  947. font-size: 24rpx;
  948. font-weight: 400;
  949. color: #999999;
  950. }
  951. .am3 {
  952. display: inline-block;
  953. height: 44rpx;
  954. background: #FFF7F8;
  955. border-radius: 8rpx;
  956. padding-left: 30rpx;
  957. padding-right: 30rpx;
  958. margin-top: 0rpx;
  959. font-size: 20rpx;
  960. font-weight: 400;
  961. color: #999999;
  962. line-height: 44rpx;
  963. }
  964. }
  965. .a-b {
  966. padding: 0 30rpx;
  967. background: #FFF7F8;
  968. height: 60rpx;
  969. line-height: 60rpx;
  970. margin: 20rpx 30rpx;
  971. display: flex;
  972. justify-content: space-between;
  973. .a-b1 {
  974. font-size: 20rpx;
  975. font-weight: 400;
  976. color: #666666;
  977. .red {
  978. font-size: 20rpx;
  979. font-weight: 500;
  980. color: #B22338;
  981. }
  982. }
  983. .a-b2 {
  984. image {
  985. vertical-align: middle;
  986. margin-left: 30rpx;
  987. height: 34rpx;
  988. width: 34rpx;
  989. }
  990. }
  991. }
  992. }
  993. .payment-details {
  994. margin-top: 20rpx;
  995. margin-bottom: 30rpx;
  996. background: rgb(245,245,245);
  997. .p_box{
  998. padding: 30rpx;
  999. background: white;
  1000. margin-bottom: 20rpx;
  1001. }
  1002. .p-t {
  1003. font-size: 32rpx;
  1004. height: 80rpx;
  1005. font-weight: bolder;
  1006. color: #111111;
  1007. line-height: 80rpx;
  1008. }
  1009. .p-b-item {
  1010. height: 60rpx;
  1011. line-height: 60rpx;
  1012. display: flex;
  1013. justify-content: space-between;
  1014. .item-lable {
  1015. font-size: 28rpx;
  1016. font-weight: 400;
  1017. color: #666666;
  1018. }
  1019. .item-value {
  1020. font-size: 28rpx;
  1021. font-weight: 400;
  1022. color: #B22338;
  1023. }
  1024. .item-value2 {
  1025. font-size: 28rpx;
  1026. font-weight: 400;
  1027. color: #666666;
  1028. }
  1029. }
  1030. }
  1031. .wait_panel {
  1032. padding-top: 20rpx;
  1033. text-align: center;
  1034. margin-bottom: 20rpx;
  1035. background: white;
  1036. .w1 {
  1037. display: flex;
  1038. flex-direction: row;
  1039. justify-content: center;
  1040. .imageView{
  1041. width: 32rpx;
  1042. height: 32rpx;
  1043. margin-top: 4rpx;
  1044. image {
  1045. width: 32rpx;
  1046. height: 32rpx;
  1047. }
  1048. }
  1049. }
  1050. .w2 {
  1051. display: flex;
  1052. justify-content: center;
  1053. height: 40rpx;
  1054. font-size: 28rpx;
  1055. margin: 20rpx 0;
  1056. font-weight: 400;
  1057. color: #333333;
  1058. line-height: 40rpx;
  1059. .red {
  1060. margin: 0 20rpx;
  1061. color: #B22338;
  1062. }
  1063. }
  1064. .w3 {
  1065. text-align: center;
  1066. padding-bottom: 20rpx;
  1067. button {
  1068. margin: auto;
  1069. line-height: 76rpx;
  1070. width: 240rpx;
  1071. height: 76rpx;
  1072. background: #B22338;
  1073. border-radius: 38rpx;
  1074. font-size: 28rpx;
  1075. font-weight: 600;
  1076. color: #FFFFFF;
  1077. }
  1078. }
  1079. }
  1080. .op-area {
  1081. display: flex;
  1082. justify-content: flex-end;
  1083. text-align: right;
  1084. .action-btn {
  1085. min-width: 200rpx;
  1086. background: #B42A3E;
  1087. border-radius: 32rpx;
  1088. margin-right: 30rpx;
  1089. height: 64rpx;
  1090. font-size: 24rpx;
  1091. font-weight: 400;
  1092. color: #fff;
  1093. line-height: 64rpx;
  1094. margin: auto 0;
  1095. }
  1096. .info-btn {
  1097. width: 200rpx;
  1098. background: #F5F5F5;
  1099. border-radius: 32rpx;
  1100. margin-right: 30rpx;
  1101. height: 64rpx;
  1102. font-size: 24rpx;
  1103. font-weight: 400;
  1104. color: #666666;
  1105. line-height: 64rpx;
  1106. margin: auto 0;
  1107. }
  1108. }
  1109. .Refund_view {
  1110. height: 40vh;
  1111. margin: 20rpx;
  1112. padding: 0 30rpx;
  1113. position: relative;
  1114. .Refund_view_title {
  1115. height: 80rpx;
  1116. font-size: 32rpx;
  1117. font-weight: bolder;
  1118. color: #111111;
  1119. line-height: 80rpx;
  1120. }
  1121. .Refund_view_radio {
  1122. display: flex;
  1123. flex-direction: column;
  1124. label {
  1125. flex: 1;
  1126. margin-bottom: 20rpx;
  1127. margin-right: 20rpx;
  1128. }
  1129. }
  1130. .Refund_view_btn {
  1131. margin: auto;
  1132. width: 90%;
  1133. height: 84rpx;
  1134. background: #B42A3E;
  1135. border-radius: 8rpx;
  1136. font-size: 28rpx;
  1137. font-weight: 400;
  1138. color: #FFFFFF;
  1139. line-height: 84rpx;
  1140. position: absolute;
  1141. bottom: 0;
  1142. transform: translateX(-50%);
  1143. left: 50%;
  1144. }
  1145. }
  1146. .success_status {
  1147. min-width: 100rpx;
  1148. color: #75BE00;
  1149. }
  1150. .refund_status {
  1151. min-width: 100rpx;
  1152. color: #333333;
  1153. }
  1154. .status {
  1155. min-width: 100rpx;
  1156. color: #FEA800;
  1157. }
  1158. /deep/ .u-count-down__text{
  1159. font-size: 28rpx !important;
  1160. }
  1161. .scroll-y{
  1162. height: 600rpx;
  1163. }
  1164. .box_3 {
  1165. background-color: rgba(250, 250, 250, 1);
  1166. border-radius: 4px 4px 0px 0px;
  1167. padding: 16rpx 16rpx 40rpx 32rpx;
  1168. }
  1169. .icon_2 {
  1170. width: 32rpx;
  1171. height: 32rpx;
  1172. margin-left: 670rpx;
  1173. }
  1174. .text_25 {
  1175. overflow-wrap: break-word;
  1176. color: rgba(17, 17, 17, 1);
  1177. font-size: 32rpx;
  1178. font-family: PingFangSC-Medium;
  1179. font-weight: 500;
  1180. text-align: left;
  1181. white-space: nowrap;
  1182. line-height: 44rpx;
  1183. margin: 0 278rpx 0 264rpx;
  1184. }
  1185. .list_1 {
  1186. height: 602rpx;
  1187. margin: 24rpx 16rpx 0 0;
  1188. }
  1189. .list-items_1 {
  1190. background-color: rgba(255, 255, 255, 1);
  1191. border-radius: 4px;
  1192. margin-bottom: 16rpx;
  1193. padding: 24rpx 24rpx 24rpx 24rpx;
  1194. }
  1195. .group_14 {
  1196. width: 638rpx;
  1197. }
  1198. .text_26 {
  1199. overflow-wrap: break-word;
  1200. color: rgba(17, 17, 17, 1);
  1201. font-size: 28rpx;
  1202. font-weight: NaN;
  1203. text-align: left;
  1204. white-space: nowrap;
  1205. line-height: 40rpx;
  1206. margin-right: 184rpx;
  1207. }
  1208. .text_27 {
  1209. overflow-wrap: break-word;
  1210. color: rgba(153, 153, 153, 1);
  1211. font-size: 24rpx;
  1212. font-weight: NaN;
  1213. text-align: left;
  1214. white-space: nowrap;
  1215. line-height: 34rpx;
  1216. margin-top: 16rpx;
  1217. }
  1218. .text-group_9 {
  1219. overflow-wrap: break-word;
  1220. color: rgba(102, 102, 102, 1);
  1221. font-size: 20rpx;
  1222. font-weight: NaN;
  1223. text-align: left;
  1224. white-space: nowrap;
  1225. line-height: 36rpx;
  1226. }
  1227. .icon_3 {
  1228. width: 34rpx;
  1229. height: 34rpx;
  1230. margin-left: 10rpx;
  1231. /*margin: 4rpx 0 4rpx 4rpx;*/
  1232. }
  1233. .group_15 {
  1234. margin: 8rpx 390rpx 0 0;
  1235. }
  1236. .tag_1 {
  1237. background-color: rgba(255, 247, 248, 1);
  1238. border-radius: 4px;
  1239. padding: 8rpx 24rpx 8rpx 26rpx;
  1240. }
  1241. .text_28 {
  1242. overflow-wrap: break-word;
  1243. color: rgba(153, 153, 153, 1);
  1244. font-size: 20rpx;
  1245. font-weight: NaN;
  1246. text-align: left;
  1247. white-space: nowrap;
  1248. line-height: 28rpx;
  1249. }
  1250. </style>