index.vue 25 KB

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