index.vue 28 KB

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