index.vue 28 KB

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