index.vue 25 KB

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