index.vue 32 KB

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