index.vue 28 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356
  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" @click="goPay(orderDetail)">
  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. <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 )
  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. console.log("+++++++++++++++++++++支付成功回调++++++++++++++++++++++++++++++")
  337. this.pay_close = false;
  338. this.pay_order_id = '';
  339. this.pay_orderId = '';
  340. this.getOrderDetail(this.orderId)
  341. uni.$u.toast("支付成功")
  342. },
  343. /**
  344. * 支付失败回调
  345. *
  346. */
  347. pay_fail: function () {
  348. console.log("+++++++++++++++++++++支付失败回调++++++++++++++++++++++++++++++")
  349. this.pay_close = false;
  350. this.pay_order_id = '';
  351. this.pay_orderId = '';
  352. uni.$u.toast("支付失败")
  353. },
  354. /**
  355. * 事件回调
  356. *
  357. */
  358. onChangeFun: function (e) {
  359. console.log(e)
  360. this.pay_close = false;
  361. },
  362. clickSelfTake(item){
  363. this.selfTakeShow =false;
  364. //item 选中的自提点
  365. this.orderDetail.selfTake = item;
  366. this.modifySelfTake(item.id);
  367. },
  368. cancelOrder() {
  369. let _this = this;
  370. uni.showModal({
  371. title: '提示',
  372. content: '确定取消次订单',
  373. confirmText: '确定',
  374. cancelText: '我再想想',
  375. success(res) {
  376. if (res.confirm) {
  377. orderCancel(_this.orderDetail.orderId).then(res => {
  378. _this.getOrderDetail(_this.orderDetail.orderId);
  379. return _this.$util.Tips({
  380. title: _this.$t(`取消成功`),
  381. icon: 'success'
  382. });
  383. }).catch(err => {
  384. return _this.$util.Tips({
  385. title: err || _this.$t(`取消失败`)
  386. });
  387. });
  388. }
  389. }
  390. })
  391. },
  392. afterSales () {
  393. },
  394. getOrderDetail(orderId) {
  395. console.log("getOrderDetail");
  396. let longitude = uni.getStorageSync('user_longitude');
  397. let latitude = uni.getStorageSync('user_latitude');
  398. getUserOrderDetail({
  399. orderId: orderId,
  400. longitude: longitude,
  401. latitude: latitude
  402. }).then(res => {
  403. this.orderDetail = res.data
  404. }).catch(err => {
  405. return that.$util.Tips({
  406. title: err || that.$t(`获取订单详情失败`)
  407. });
  408. });
  409. },
  410. /**
  411. * 获取自提点列表
  412. */
  413. getSelfTakeList() {
  414. let longitude = uni.getStorageSync('user_longitude');
  415. let latitude = uni.getStorageSync('user_latitude');
  416. getGrouponSelfTakeList({
  417. longitude: longitude,
  418. latitude: latitude,
  419. grouponId: this.orderDetail.grouponId
  420. }).then(res => {
  421. this.selfTakeList = res.data;
  422. this.selfTakeShow = true;
  423. })
  424. },
  425. /**
  426. * 修改自提点
  427. * @param {Object} selfTakeId
  428. */
  429. modifySelfTake(selfTakeId) {
  430. console.log(this.orderDetail);
  431. modifySelfTake({
  432. selfTakeId: selfTakeId,
  433. orderId: this.orderDetail.orderId
  434. }).then(res => {
  435. this.selfTakeShow = false;
  436. this.getOrderDetail(this.orderDetail.orderId)
  437. })
  438. }
  439. }
  440. }
  441. </script>
  442. <style lang="scss" scoped>
  443. @import "/static/css/common.css";
  444. /deep/uni-checkbox[disabled] .uni-checkbox-input {
  445. background-color: #eee;
  446. }
  447. .alipaysubmit {
  448. display: none;
  449. }
  450. .order-submission .line {
  451. width: 100%;
  452. height: 3rpx;
  453. }
  454. .order-submission .line image {
  455. width: 100%;
  456. height: 100%;
  457. display: block;
  458. }
  459. .order-submission .address {
  460. padding: 28rpx 30rpx;
  461. background-color: #fff;
  462. box-sizing: border-box;
  463. }
  464. .order-submission .address .addressCon {
  465. width: 610rpx;
  466. font-size: 26rpx;
  467. color: #666;
  468. }
  469. .order-submission .address .addressCon .name {
  470. font-size: 30rpx;
  471. color: #282828;
  472. font-weight: bold;
  473. margin-bottom: 10rpx;
  474. }
  475. .order-submission .address .addressCon .name .phone {
  476. margin-left: 50rpx;
  477. }
  478. .order-submission .address .addressCon .default {
  479. margin-right: 12rpx;
  480. }
  481. .order-submission .address .addressCon .setaddress {
  482. color: #333;
  483. font-size: 28rpx;
  484. }
  485. .order-submission .address .iconfont {
  486. font-size: 35rpx;
  487. color: #707070;
  488. }
  489. .order-submission .allAddress {
  490. width: 100%;
  491. background: linear-gradient(to bottom, var(--view-theme) 0%, #f5f5f5 100%);
  492. padding-top: 100rpx;
  493. margin-bottom: 12rpx;
  494. }
  495. .order-submission .allAddress .nav {
  496. width: 710rpx;
  497. margin: 0 auto;
  498. }
  499. .order-submission .allAddress .nav .item {
  500. width: 355rpx;
  501. }
  502. .order-submission .allAddress .nav .item.on {
  503. position: relative;
  504. width: 250rpx;
  505. }
  506. .order-submission .allAddress .nav .item.on::before {
  507. position: absolute;
  508. bottom: 0;
  509. content: "快递配送";
  510. font-size: 28rpx;
  511. display: block;
  512. height: 0;
  513. width: 336rpx;
  514. border-width: 0 20rpx 80rpx 0;
  515. border-style: none solid solid;
  516. border-color: transparent transparent #fff;
  517. z-index: 2;
  518. border-radius: 7rpx 30rpx 0 0;
  519. text-align: center;
  520. line-height: 80rpx;
  521. }
  522. .order-submission .allAddress .nav .item:nth-of-type(2).on::before {
  523. content: "到店自提";
  524. border-width: 0 0 80rpx 20rpx;
  525. border-radius: 30rpx 7rpx 0 0;
  526. }
  527. .order-submission .allAddress .nav .item.on2 {
  528. position: relative;
  529. }
  530. .order-submission .allAddress .nav .item.on2::before {
  531. position: absolute;
  532. bottom: 0;
  533. content: "到店自提";
  534. font-size: 28rpx;
  535. display: block;
  536. height: 0;
  537. width: 400rpx;
  538. border-width: 0 0 60rpx 60rpx;
  539. border-style: none solid solid;
  540. border-color: transparent transparent rgba(255, 255, 255, 0.6);
  541. border-radius: 40rpx 6rpx 0 0;
  542. text-align: center;
  543. line-height: 60rpx;
  544. }
  545. .order-submission .allAddress .nav .item:nth-of-type(1).on2::before {
  546. content: "快递配送";
  547. border-width: 0 60rpx 60rpx 0;
  548. border-radius: 6rpx 40rpx 0 0;
  549. }
  550. .order-submission .allAddress .address {
  551. width: 710rpx;
  552. height: 150rpx;
  553. margin: 0 auto;
  554. }
  555. .order-submission .allAddress .line {
  556. width: 710rpx;
  557. margin: 0 auto;
  558. }
  559. .order-submission .wrapper .item .discount .placeholder {
  560. color: #ccc;
  561. }
  562. .placeholder-textarea {
  563. position: relative;
  564. .placeholder {
  565. position: absolute;
  566. color: #ccc;
  567. top: 26rpx;
  568. left: 30rpx;
  569. }
  570. }
  571. .order-submission .wrapper {
  572. background-color: #fff;
  573. margin-top: 13rpx;
  574. }
  575. .order-submission .wrapper .item {
  576. padding: 27rpx 30rpx;
  577. font-size: 30rpx;
  578. color: #282828;
  579. border-bottom: 1px solid #f0f0f0;
  580. .mark {
  581. background-color: #f9f9f9;
  582. width: 345px;
  583. height: 70px;
  584. border-radius: 1px;
  585. margin-top: 15px;
  586. padding: 12px 14px;
  587. color: #ccc;
  588. font-size: 28rpx;
  589. box-sizing: border-box;
  590. }
  591. .mark-msg {
  592. color: #333;
  593. font-size: 32rpx;
  594. }
  595. }
  596. .order-submission .wrapper .item .discount {
  597. font-size: 30rpx;
  598. color: #999;
  599. }
  600. .order-submission .wrapper .item .discount input {
  601. text-align: end;
  602. }
  603. .order-submission .wrapper .item .discount .iconfont {
  604. color: #515151;
  605. font-size: 30rpx;
  606. margin-left: 15rpx;
  607. }
  608. .order-submission .wrapper .item .discount .num {
  609. font-size: 32rpx;
  610. margin-right: 20rpx;
  611. }
  612. .order-submission .wrapper .item .shipping {
  613. font-size: 30rpx;
  614. color: #999;
  615. position: relative;
  616. padding-right: 58rpx;
  617. }
  618. .order-submission .wrapper .item .shipping .iconfont {
  619. font-size: 35rpx;
  620. color: #707070;
  621. position: absolute;
  622. right: 0;
  623. top: 50%;
  624. transform: translateY(-50%);
  625. margin-left: 30rpx;
  626. }
  627. .order-submission .wrapper .item textarea {
  628. background-color: #f9f9f9;
  629. width: 690rpx;
  630. height: 140rpx;
  631. border-radius: 3rpx;
  632. margin-top: 30rpx;
  633. padding: 25rpx 28rpx;
  634. box-sizing: border-box;
  635. }
  636. .order-submission .wrapper .item .placeholder {
  637. color: #ccc;
  638. font-size: 28rpx;
  639. }
  640. .order-submission .wrapper .item .list {
  641. margin-top: 35rpx;
  642. }
  643. .order-submission .wrapper .item .list .payItem {
  644. border: 1px solid #eee;
  645. border-radius: 6rpx;
  646. height: 86rpx;
  647. width: 100%;
  648. box-sizing: border-box;
  649. margin-top: 20rpx;
  650. font-size: 28rpx;
  651. color: #282828;
  652. }
  653. .order-submission .wrapper .item .list .payItem.on {
  654. border-color: #fc5445;
  655. color: #e93323;
  656. }
  657. .order-submission .wrapper .item .list .payItem .name {
  658. width: 50%;
  659. text-align: center;
  660. border-right: 1px solid #eee;
  661. padding-left: 80rpx;
  662. }
  663. .order-submission .wrapper .item .list .payItem .name .iconfont {
  664. width: 44rpx;
  665. height: 44rpx;
  666. border-radius: 50%;
  667. text-align: center;
  668. line-height: 44rpx;
  669. background-color: #fe960f;
  670. color: #fff;
  671. font-size: 30rpx;
  672. margin-right: 15rpx;
  673. }
  674. .order-submission .wrapper .item .list .payItem .name .iconfont.icon-weixin2 {
  675. background-color: #41b035;
  676. }
  677. .order-submission .wrapper .item .list .payItem .name .iconfont.icon-zhifubao {
  678. background-color: #1677FF;
  679. }
  680. .order-submission .wrapper .item .list .payItem .tip {
  681. width: 49%;
  682. text-align: center;
  683. font-size: 26rpx;
  684. color: #aaa;
  685. }
  686. .order-submission .moneyList {
  687. margin-top: 12rpx;
  688. background-color: #fff;
  689. padding: 30rpx;
  690. }
  691. .order-submission .moneyList .item {
  692. font-size: 28rpx;
  693. color: #282828;
  694. }
  695. .order-submission .moneyList .item~.item {
  696. margin-top: 20rpx;
  697. }
  698. .order-submission .moneyList .item .money {
  699. color: #868686;
  700. }
  701. .order-submission .footer {
  702. width: 100%;
  703. height: 100rpx;
  704. background-color: #fff;
  705. padding: 0 30rpx;
  706. font-size: 28rpx;
  707. color: #333;
  708. box-sizing: border-box;
  709. position: fixed;
  710. bottom: 0;
  711. left: 0;
  712. z-index: 9;
  713. }
  714. .order-submission .footer .settlement {
  715. font-size: 30rpx;
  716. color: #fff;
  717. width: 240rpx;
  718. height: 70rpx;
  719. background-color: var(--view-theme);
  720. border-radius: 50rpx;
  721. text-align: center;
  722. line-height: 70rpx;
  723. }
  724. .footer .transparent {
  725. opacity: 0
  726. }
  727. .confirm {
  728. text-align: right;
  729. font-size: 22rpx;
  730. }
  731. .confirmImg {
  732. width: 100%;
  733. .img {
  734. width: 136rpx;
  735. height: 136rpx;
  736. }
  737. .pictrue {
  738. width: 136rpx;
  739. height: 136rpx;
  740. box-sizing: border-box;
  741. margin: 18rpx;
  742. margin-bottom: 35rpx;
  743. position: relative;
  744. font-size: 22rpx;
  745. color: #bbb;
  746. .del {
  747. position: absolute;
  748. top: 0;
  749. right: 0;
  750. }
  751. }
  752. .bor {
  753. border: 1rpx solid #ddd;
  754. }
  755. }
  756. .fontC {
  757. color: grey;
  758. }
  759. .all-products-body {
  760. padding-top: 30rpx;
  761. background: #fff;
  762. .all-products-item {
  763. display: flex;
  764. padding-bottom: 20rpx;
  765. background: #fff;
  766. padding-left: 15rpx;
  767. image {
  768. width: 128rpx;
  769. height: 128rpx;
  770. border-radius: 4rpx;
  771. }
  772. .all-products-item-content {
  773. width: calc(100% - 128rpx);
  774. display: flex;
  775. flex-direction: column;
  776. padding-left: 15rpx;
  777. .all-products-item-content-t {
  778. flex: 1;
  779. font-size: 24rpx;
  780. font-weight: 400;
  781. color: #333333;
  782. height: 80rpx;
  783. line-height: 40rpx;
  784. width: 550rpx;
  785. display: -webkit-box;
  786. -webkit-box-orient: vertical;
  787. -webkit-line-clamp: 2;
  788. overflow: hidden;
  789. text-overflow: ellipsis;
  790. }
  791. .all-products-item-content-b {
  792. flex: 1;
  793. font-size: 28rpx;
  794. font-weight: 500;
  795. height: 48rpx;
  796. line-height: 48rpx;
  797. display: flex;
  798. justify-content: space-between;
  799. .red {
  800. display: block;
  801. font-size: 28rpx;
  802. font-weight: 500;
  803. color: #B22338 !important;
  804. margin-right: 10rpx;
  805. }
  806. .line-thr {
  807. display: block;
  808. font-size: 28rpx;
  809. font-weight: 400;
  810. color: #999999;
  811. text-decoration: line-through;
  812. }
  813. .count {
  814. font-size: 24rpx;
  815. font-weight: 400;
  816. color: #999999;
  817. margin-right: 30rpx;
  818. }
  819. }
  820. }
  821. }
  822. }
  823. .address-info {
  824. padding: 30rpx 0;
  825. background: white;
  826. .a-t {
  827. padding: 0 30rpx;
  828. display: flex;
  829. justify-content: space-between;
  830. height: 44rpx;
  831. margin-bottom: 20rpx;
  832. .t1 {
  833. height: 44rpx;
  834. font-size: 32rpx;
  835. font-weight: bolder;
  836. color: #111111;
  837. line-height: 44rpx;
  838. }
  839. .t2 {
  840. height: 34rpx;
  841. font-size: 24rpx;
  842. font-weight: 400;
  843. color: #B42A3E;
  844. line-height: 34rpx;
  845. image {
  846. margin-left: 30rpx;
  847. height: 34rpx;
  848. width: 34rpx;
  849. vertical-align: middle;
  850. }
  851. }
  852. }
  853. .a-m {
  854. padding: 0 30rpx;
  855. .am1 {
  856. display: flex;
  857. justify-content: space-between;
  858. margin-bottom: 20rpx;
  859. .am1-1 {
  860. height: 40rpx;
  861. font-size: 28rpx;
  862. font-weight: 400;
  863. color: #111111;
  864. line-height: 40rpx;
  865. }
  866. .am1-2 {
  867. height: 36rpx;
  868. font-size: 20rpx;
  869. font-weight: 400;
  870. color: #666666;
  871. line-height: 36rpx;
  872. image {
  873. margin-left: 30rpx;
  874. vertical-align: middle;
  875. height: 34rpx;
  876. width: 34rpx;
  877. }
  878. }
  879. }
  880. .am2 {
  881. margin-bottom: 20rpx;
  882. font-size: 24rpx;
  883. font-weight: 400;
  884. color: #999999;
  885. }
  886. .am3 {
  887. display: inline-block;
  888. height: 44rpx;
  889. background: #FFF7F8;
  890. border-radius: 8rpx;
  891. padding-left: 30rpx;
  892. padding-right: 30rpx;
  893. margin-top: 0rpx;
  894. font-size: 20rpx;
  895. font-weight: 400;
  896. color: #999999;
  897. line-height: 44rpx;
  898. }
  899. }
  900. .a-b {
  901. padding: 0 30rpx;
  902. background: #FFF7F8;
  903. height: 60rpx;
  904. line-height: 60rpx;
  905. margin: 20rpx 30rpx;
  906. display: flex;
  907. justify-content: space-between;
  908. .a-b1 {
  909. font-size: 20rpx;
  910. font-weight: 400;
  911. color: #666666;
  912. .red {
  913. font-size: 20rpx;
  914. font-weight: 500;
  915. color: #B22338;
  916. }
  917. }
  918. .a-b2 {
  919. image {
  920. vertical-align: middle;
  921. margin-left: 30rpx;
  922. height: 34rpx;
  923. width: 34rpx;
  924. }
  925. }
  926. }
  927. }
  928. .payment-details {
  929. margin-top: 20rpx;
  930. margin-bottom: 30rpx;
  931. background: rgb(245,245,245);
  932. .p_box{
  933. padding: 30rpx;
  934. background: white;
  935. margin-bottom: 20rpx;
  936. }
  937. .p-t {
  938. font-size: 32rpx;
  939. height: 80rpx;
  940. font-weight: bolder;
  941. color: #111111;
  942. line-height: 80rpx;
  943. }
  944. .p-b-item {
  945. height: 60rpx;
  946. line-height: 60rpx;
  947. display: flex;
  948. justify-content: space-between;
  949. .item-lable {
  950. font-size: 28rpx;
  951. font-weight: 400;
  952. color: #666666;
  953. }
  954. .item-value {
  955. font-size: 28rpx;
  956. font-weight: 400;
  957. color: #B22338;
  958. }
  959. .item-value2 {
  960. font-size: 28rpx;
  961. font-weight: 400;
  962. color: #666666;
  963. }
  964. }
  965. }
  966. .wait_panel {
  967. padding-top: 20rpx;
  968. text-align: center;
  969. margin-bottom: 20rpx;
  970. background: white;
  971. .w1 {
  972. display: flex;
  973. flex-direction: row;
  974. justify-content: center;
  975. .imageView{
  976. width: 32rpx;
  977. height: 32rpx;
  978. margin-top: 4rpx;
  979. image {
  980. width: 32rpx;
  981. height: 32rpx;
  982. }
  983. }
  984. }
  985. .w2 {
  986. display: flex;
  987. justify-content: center;
  988. height: 40rpx;
  989. font-size: 28rpx;
  990. margin: 20rpx 0;
  991. font-weight: 400;
  992. color: #333333;
  993. line-height: 40rpx;
  994. .red {
  995. margin: 0 20rpx;
  996. color: #B22338;
  997. }
  998. }
  999. .w3 {
  1000. text-align: center;
  1001. padding-bottom: 20rpx;
  1002. button {
  1003. margin: auto;
  1004. line-height: 76rpx;
  1005. width: 240rpx;
  1006. height: 76rpx;
  1007. background: #B22338;
  1008. border-radius: 38rpx;
  1009. font-size: 28rpx;
  1010. font-weight: 600;
  1011. color: #FFFFFF;
  1012. }
  1013. }
  1014. }
  1015. .op-area {
  1016. display: flex;
  1017. justify-content: flex-end;
  1018. text-align: right;
  1019. .action-btn {
  1020. min-width: 200rpx;
  1021. background: #B42A3E;
  1022. border-radius: 32rpx;
  1023. margin-right: 30rpx;
  1024. height: 64rpx;
  1025. font-size: 24rpx;
  1026. font-weight: 400;
  1027. color: #fff;
  1028. line-height: 64rpx;
  1029. margin: auto 0;
  1030. }
  1031. .info-btn {
  1032. width: 200rpx;
  1033. background: #F5F5F5;
  1034. border-radius: 32rpx;
  1035. margin-right: 30rpx;
  1036. height: 64rpx;
  1037. font-size: 24rpx;
  1038. font-weight: 400;
  1039. color: #666666;
  1040. line-height: 64rpx;
  1041. margin: auto 0;
  1042. }
  1043. }
  1044. .Refund_view {
  1045. height: 40vh;
  1046. margin: 20rpx;
  1047. padding: 0 30rpx;
  1048. position: relative;
  1049. .Refund_view_title {
  1050. height: 80rpx;
  1051. font-size: 32rpx;
  1052. font-weight: bolder;
  1053. color: #111111;
  1054. line-height: 80rpx;
  1055. }
  1056. .Refund_view_radio {
  1057. display: flex;
  1058. flex-direction: column;
  1059. label {
  1060. flex: 1;
  1061. margin-bottom: 20rpx;
  1062. margin-right: 20rpx;
  1063. }
  1064. }
  1065. .Refund_view_btn {
  1066. margin: auto;
  1067. width: 90%;
  1068. height: 84rpx;
  1069. background: #B42A3E;
  1070. border-radius: 8rpx;
  1071. font-size: 28rpx;
  1072. font-weight: 400;
  1073. color: #FFFFFF;
  1074. line-height: 84rpx;
  1075. position: absolute;
  1076. bottom: 0;
  1077. transform: translateX(-50%);
  1078. left: 50%;
  1079. }
  1080. }
  1081. .success_status {
  1082. min-width: 100rpx;
  1083. color: #75BE00;
  1084. }
  1085. .refund_status {
  1086. min-width: 100rpx;
  1087. color: #333333;
  1088. }
  1089. .status {
  1090. min-width: 100rpx;
  1091. color: #FEA800;
  1092. }
  1093. /deep/ .u-count-down__text{
  1094. font-size: 28rpx !important;
  1095. }
  1096. .scroll-y{
  1097. height: 600rpx;
  1098. }
  1099. .box_3 {
  1100. background-color: rgba(250, 250, 250, 1);
  1101. border-radius: 4px 4px 0px 0px;
  1102. padding: 16rpx 16rpx 40rpx 32rpx;
  1103. }
  1104. .icon_2 {
  1105. width: 32rpx;
  1106. height: 32rpx;
  1107. margin-left: 670rpx;
  1108. }
  1109. .text_25 {
  1110. overflow-wrap: break-word;
  1111. color: rgba(17, 17, 17, 1);
  1112. font-size: 32rpx;
  1113. font-family: PingFangSC-Medium;
  1114. font-weight: 500;
  1115. text-align: left;
  1116. white-space: nowrap;
  1117. line-height: 44rpx;
  1118. margin: 0 278rpx 0 264rpx;
  1119. }
  1120. .list_1 {
  1121. height: 602rpx;
  1122. margin: 24rpx 16rpx 0 0;
  1123. }
  1124. .list-items_1 {
  1125. background-color: rgba(255, 255, 255, 1);
  1126. border-radius: 4px;
  1127. margin-bottom: 16rpx;
  1128. padding: 24rpx 24rpx 24rpx 24rpx;
  1129. }
  1130. .group_14 {
  1131. width: 638rpx;
  1132. }
  1133. .text_26 {
  1134. overflow-wrap: break-word;
  1135. color: rgba(17, 17, 17, 1);
  1136. font-size: 28rpx;
  1137. font-weight: NaN;
  1138. text-align: left;
  1139. white-space: nowrap;
  1140. line-height: 40rpx;
  1141. margin-right: 184rpx;
  1142. }
  1143. .text_27 {
  1144. overflow-wrap: break-word;
  1145. color: rgba(153, 153, 153, 1);
  1146. font-size: 24rpx;
  1147. font-weight: NaN;
  1148. text-align: left;
  1149. white-space: nowrap;
  1150. line-height: 34rpx;
  1151. margin-top: 16rpx;
  1152. }
  1153. .text-group_9 {
  1154. overflow-wrap: break-word;
  1155. color: rgba(102, 102, 102, 1);
  1156. font-size: 20rpx;
  1157. font-weight: NaN;
  1158. text-align: left;
  1159. white-space: nowrap;
  1160. line-height: 36rpx;
  1161. }
  1162. .icon_3 {
  1163. width: 34rpx;
  1164. height: 34rpx;
  1165. margin-left: 10rpx;
  1166. /*margin: 4rpx 0 4rpx 4rpx;*/
  1167. }
  1168. .group_15 {
  1169. margin: 8rpx 390rpx 0 0;
  1170. }
  1171. .tag_1 {
  1172. background-color: rgba(255, 247, 248, 1);
  1173. border-radius: 4px;
  1174. padding: 8rpx 24rpx 8rpx 26rpx;
  1175. }
  1176. .text_28 {
  1177. overflow-wrap: break-word;
  1178. color: rgba(153, 153, 153, 1);
  1179. font-size: 20rpx;
  1180. font-weight: NaN;
  1181. text-align: left;
  1182. white-space: nowrap;
  1183. line-height: 28rpx;
  1184. }
  1185. </style>