index.vue 25 KB

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