index.vue 27 KB

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