integral_order_details.vue 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859
  1. <template>
  2. <view :style="colorStyle">
  3. <view class='order-details'>
  4. <view>
  5. <view class='address'>
  6. <view class='name'>{{cartInfo.real_name}}<text class='phone'>{{cartInfo.user_phone}}</text></view>
  7. <view>{{cartInfo.user_address}}</view>
  8. </view>
  9. <view class='line'>
  10. <image src='@/static/images/line.jpg'></image>
  11. </view>
  12. </view>
  13. <view class="orderGoods">
  14. <view class='total'>{{$t(`共`)}}{{cartInfo.total_num}}{{$t(`件商品`)}}</view>
  15. <view class='goodWrapper'>
  16. <view class='item acea-row row-between-wrapper' @click="jumpCon(cartInfo.product_id)">
  17. <view class='pictrue'>
  18. <image :src='cartInfo.image'></image>
  19. </view>
  20. <view class='text'>
  21. <view class='acea-row row-between-wrapper'>
  22. <view class='name line1'>{{cartInfo.store_name}}</view>
  23. <view class='num'>x {{cartInfo.total_num}}</view>
  24. </view>
  25. <view class='attr line1' v-if="cartInfo.attrInfo">{{cartInfo.attrInfo.suk}}
  26. </view>
  27. <view class='money font-num'>
  28. {{cartInfo.price}}{{$t(`积分`)}}
  29. </view>
  30. </view>
  31. </view>
  32. </view>
  33. </view>
  34. <view class='wrapper'>
  35. <view class='item acea-row row-between'>
  36. <view>{{$t(`订单编号`)}}:</view>
  37. <view class='conter acea-row row-middle row-right'>{{cartInfo.order_id}}
  38. <!-- #ifndef H5 -->
  39. <text class='copy' @tap='copy'>{{$t(`复制`)}}</text>
  40. <!-- #endif -->
  41. <!-- #ifdef H5 -->
  42. <text class='copy copy-data' :data-clipboard-text="cartInfo.order_id">{{$t(`复制`)}}</text>
  43. <!-- #endif -->
  44. </view>
  45. </view>
  46. <view class='item acea-row row-between'>
  47. <view>{{$t(`订单状态`)}}:</view>
  48. <view class='conter'>{{$t(cartInfo.status_name)}}</view>
  49. </view>
  50. <view class='item acea-row row-between'>
  51. <view>{{$t(`下单时间`)}}:</view>
  52. <view class='conter'>{{cartInfo.add_time}}</view>
  53. </view>
  54. <view class='item acea-row row-between'>
  55. <view>{{$t(`支付积分`)}}:</view>
  56. <view class='conter'>{{cartInfo.total_price}}</view>
  57. </view>
  58. <view class='item acea-row row-between' v-if="cartInfo.remark">
  59. <view>{{$t(`备注`)}}:</view>
  60. <view class='conter'>{{cartInfo.remark}}</view>
  61. </view>
  62. <view class='item acea-row row-between' v-if="cartInfo.delivery_type === 'express'">
  63. <view>{{$t(`快递单号`)}}:</view>
  64. <view class='conter'>{{cartInfo.delivery_id}}</view>
  65. </view>
  66. <view class='item acea-row row-between' v-if="cartInfo.delivery_type === 'express'">
  67. <view>{{$t(`快递公司`)}}:</view>
  68. <view class='conter'>{{cartInfo.delivery_name}}</view>
  69. </view>
  70. <view class='item acea-row row-between' v-if="cartInfo.delivery_type === 'send'">
  71. <view>{{$t(`送货人电话`)}}:</view>
  72. <view class='conter'>{{cartInfo.delivery_id}}</view>
  73. </view>
  74. <view class='item acea-row row-between' v-if="cartInfo.delivery_type === 'send'">
  75. <view>{{$t(`配送人姓名`)}}:</view>
  76. <view class='conter'>{{cartInfo.delivery_name}}</view>
  77. </view>
  78. <view class='item acea-row row-between' v-if="cartInfo.delivery_type === 'fictitious'">
  79. <view>{{$t(`虚拟发货`)}}:</view>
  80. <view class='conter'>{{$t(`已发货,请注意查收`)}}</view>
  81. </view>
  82. <view class='item acea-row row-between' v-if="cartInfo.fictitious_content">
  83. <view>{{$t(`虚拟备注`)}}:</view>
  84. <view class='conter'>{{cartInfo.fictitious_content}}</view>
  85. </view>
  86. <view class='item acea-row row-between' v-if="cartInfo.delivery_type === 'send'">
  87. <view>{{$t(`配送核销码`)}}:</view>
  88. <view class='conter'>{{cartInfo.verify_code}}</view>
  89. </view>
  90. </view>
  91. <view style='height:120rpx;'></view>
  92. <view class='footer acea-row row-right row-middle'>
  93. <view class='bnt bg-color' v-if="cartInfo.status==3" @tap='delOrder'>{{$t(`删除订单`)}}</view>
  94. <navigator class='bnt cancel' hover-class='none'
  95. v-if="cartInfo.delivery_id && cartInfo.delivery_type === 'express'"
  96. :url="'/pages/points_mall/logistics_details?order_id='+ cartInfo.order_id">{{$t(`查看物流`)}}
  97. </navigator>
  98. <view class='bnt bg-color' v-if="cartInfo.status==2" @tap='confirmOrder'>{{$t(`确认收货`)}}</view>
  99. </view>
  100. </view>
  101. <!-- #ifndef MP -->
  102. <home></home>
  103. <!-- #endif -->
  104. </view>
  105. </template>
  106. <script>
  107. import {
  108. integralOrderDetails,
  109. orderTake,
  110. orderDel
  111. } from '@/api/activity.js'
  112. import {
  113. openOrderRefundSubscribe
  114. } from '@/utils/SubscribeMessage.js';
  115. import {
  116. getUserInfo
  117. } from '@/api/user.js';
  118. import home from '@/components/home';
  119. import orderGoods from "@/components/orderGoods";
  120. import ClipboardJS from "@/plugin/clipboard/clipboard.js";
  121. import {
  122. toLogin
  123. } from '@/libs/login.js';
  124. import {
  125. mapGetters
  126. } from "vuex";
  127. // #ifdef MP
  128. import authorize from '@/components/Authorize';
  129. // #endif
  130. import colors from "@/mixins/color";
  131. export default {
  132. components: {
  133. home,
  134. orderGoods,
  135. // #ifdef MP
  136. authorize
  137. // #endif
  138. },
  139. mixins: [colors],
  140. data() {
  141. return {
  142. order_id: '',
  143. evaluate: 0,
  144. cartInfo: [], //购物车产品
  145. orderInfo: {
  146. system_store: {},
  147. _status: {}
  148. }, //订单详情
  149. system_store: {},
  150. isGoodsReturn: false, //是否为退款订单
  151. status: {}, //订单底部按钮状态
  152. isClose: false,
  153. payMode: [{
  154. name: this.$t(`微信支付`),
  155. icon: "icon-weixinzhifu",
  156. value: 'weixin',
  157. title: this.$t(`使用微信快捷支付`),
  158. payStatus: true,
  159. },
  160. // #ifdef H5 || APP-PLUS
  161. {
  162. name: this.$t(`支付宝支付`),
  163. icon: 'icon-zhifubao',
  164. value: 'alipay',
  165. title: this.$t(`使用线上支付宝支付`),
  166. payStatus: true
  167. },
  168. // #endif
  169. {
  170. name: this.$t(`余额支付`),
  171. icon: "icon-yuezhifu",
  172. value: 'yue',
  173. title: this.$t(`当前可用余额:`),
  174. number: 0,
  175. payStatus: true
  176. },
  177. ],
  178. pay_close: false,
  179. pay_order_id: '',
  180. totalPrice: '0',
  181. isAuto: false, //没有授权的不会自动授权
  182. isShowAuth: false, //是否隐藏授权
  183. routineContact: '0'
  184. };
  185. },
  186. computed: mapGetters(['isLogin']),
  187. onLoad: function(options) {
  188. if (options.order_id) {
  189. this.$set(this, 'order_id', options.order_id);
  190. }
  191. },
  192. onShow() {
  193. if (this.isLogin) {
  194. this.getOrderInfo();
  195. // this.getUserInfo();
  196. } else {
  197. toLogin();
  198. }
  199. },
  200. onHide: function() {
  201. this.isClose = true;
  202. },
  203. onReady: function() {
  204. // #ifdef H5 || APP-PLUS
  205. this.$nextTick(function() {
  206. const clipboard = new ClipboardJS(".copy-data");
  207. clipboard.on("success", () => {
  208. this.$util.Tips({
  209. title: this.$t(`复制成功`)
  210. });
  211. });
  212. });
  213. // #endif
  214. },
  215. methods: {
  216. goGoodCall() {
  217. let self = this
  218. uni.navigateTo({
  219. url: `/pages/extension/customer_list/chat?orderId=${self.order_id}`
  220. })
  221. },
  222. openSubcribe: function(e) {
  223. let page = e;
  224. uni.showLoading({
  225. title: this.$t(`正在加载`),
  226. })
  227. openOrderRefundSubscribe().then(res => {
  228. uni.hideLoading();
  229. uni.navigateTo({
  230. url: page,
  231. });
  232. }).catch(() => {
  233. uni.hideLoading();
  234. });
  235. },
  236. /**
  237. * 事件回调
  238. *
  239. */
  240. onChangeFun: function(e) {
  241. let opt = e;
  242. let action = opt.action || null;
  243. let value = opt.value != undefined ? opt.value : null;
  244. (action && this[action]) && this[action](value);
  245. },
  246. /**
  247. * 拨打电话
  248. */
  249. makePhone: function() {
  250. uni.makePhoneCall({
  251. phoneNumber: this.system_store.phone
  252. })
  253. },
  254. /**
  255. * 打开地图
  256. *
  257. */
  258. showMaoLocation: function() {
  259. if (!this.system_store.latitude || !this.system_store.longitude) return this.$util.Tips({
  260. title: this.$t(`缺少经纬度信息无法查看地图!`)
  261. });
  262. uni.openLocation({
  263. latitude: parseFloat(this.system_store.latitude),
  264. longitude: parseFloat(this.system_store.longitude),
  265. scale: 8,
  266. name: this.system_store.name,
  267. address: this.system_store.address + this.system_store.detailed_address,
  268. success: function() {
  269. },
  270. });
  271. },
  272. /**
  273. * 关闭支付组件
  274. *
  275. */
  276. payClose: function() {
  277. this.pay_close = false;
  278. },
  279. /**
  280. * 打开支付组件
  281. *
  282. */
  283. pay_open: function() {
  284. this.pay_close = true;
  285. this.pay_order_id = this.orderInfo.order_id;
  286. this.totalPrice = this.orderInfo.pay_price;
  287. },
  288. /**
  289. * 支付成功回调
  290. *
  291. */
  292. pay_complete: function() {
  293. this.pay_close = false;
  294. this.pay_order_id = '';
  295. this.getOrderInfo();
  296. },
  297. /**
  298. * 支付失败回调
  299. *
  300. */
  301. pay_fail: function() {
  302. this.pay_close = false;
  303. this.pay_order_id = '';
  304. },
  305. /**
  306. * 登录授权回调
  307. *
  308. */
  309. onLoadFun: function() {
  310. this.getOrderInfo();
  311. this.getUserInfo();
  312. },
  313. /**
  314. * 获取用户信息
  315. *
  316. */
  317. getUserInfo: function() {
  318. let that = this;
  319. getUserInfo().then(res => {
  320. // #ifdef H5 || APP-PLUS
  321. that.payMode[2].number = res.data.now_money;
  322. // #endif
  323. // #ifdef MP
  324. that.payMode[1].number = res.data.now_money;
  325. // #endif
  326. that.$set(that, 'payMode', that.payMode);
  327. })
  328. },
  329. /**
  330. * 获取订单详细信息
  331. *
  332. */
  333. getOrderInfo: function() {
  334. let that = this;
  335. uni.showLoading({
  336. title: this.$t(`正在加载中`)
  337. });
  338. integralOrderDetails(this.order_id).then(res => {
  339. uni.hideLoading();
  340. that.$set(that, 'cartInfo', res.data);
  341. }).catch(err => {
  342. uni.hideLoading();
  343. that.$util.Tips({
  344. title: err
  345. }, '/pages/points_mall/exchange_record');
  346. });
  347. },
  348. /**
  349. *
  350. * 剪切订单号
  351. */
  352. // #ifndef H5
  353. copy: function() {
  354. let that = this;
  355. uni.setClipboardData({
  356. data: this.cartInfo.order_id
  357. });
  358. },
  359. // #endif
  360. /**
  361. * 打电话
  362. */
  363. goTel: function() {
  364. uni.makePhoneCall({
  365. phoneNumber: this.orderInfo.delivery_id
  366. })
  367. },
  368. /**
  369. * 设置底部按钮
  370. *
  371. */
  372. getOrderStatus: function() {
  373. let orderInfo = this.orderInfo || {},
  374. _status = orderInfo._status || {
  375. _type: 0
  376. },
  377. status = {};
  378. let type = parseInt(_status._type),
  379. delivery_type = orderInfo.delivery_type,
  380. seckill_id = orderInfo.seckill_id ? parseInt(orderInfo.seckill_id) : 0,
  381. bargain_id = orderInfo.bargain_id ? parseInt(orderInfo.bargain_id) : 0,
  382. combination_id = orderInfo.combination_id ? parseInt(orderInfo.combination_id) : 0;
  383. status = {
  384. type: type == 9 ? -9 : type,
  385. class_status: 0
  386. };
  387. if (type == 1 && combination_id > 0) status.class_status = 1; //查看拼团
  388. if (type == 2 && delivery_type == 'express') status.class_status = 2; //查看物流
  389. if (type == 2) status.class_status = 3; //确认收货
  390. if (type == 4 || type == 0) status.class_status = 4; //删除订单
  391. if (!seckill_id && !bargain_id && !combination_id && (type == 3 || type == 4)) status.class_status =
  392. 5; //再次购买
  393. this.$set(this, 'status', status);
  394. },
  395. /**
  396. * 去拼团详情
  397. *
  398. */
  399. goJoinPink: function() {
  400. uni.navigateTo({
  401. url: '/pages/activity/goods_combination_status/index?id=' + this.orderInfo.pink_id,
  402. });
  403. },
  404. confirmOrder: function() {
  405. let that = this;
  406. uni.showModal({
  407. title: this.$t(`确认收货`),
  408. content: this.$t(`为保障权益,请收到货确认无误后,再确认收货`),
  409. success: function(res) {
  410. if (res.confirm) {
  411. orderTake({
  412. order_id: that.order_id
  413. }).then(res => {
  414. return that.$util.Tips({
  415. title: this.$t(`操作成功`),
  416. icon: 'success'
  417. }, function() {
  418. that.getOrderInfo();
  419. });
  420. }).catch(err => {
  421. return that.$util.Tips({
  422. title: err
  423. });
  424. })
  425. }
  426. }
  427. })
  428. },
  429. /**
  430. *
  431. * 删除订单
  432. */
  433. delOrder: function() {
  434. let that = this;
  435. orderDel({
  436. order_id: that.order_id
  437. }).then(res => {
  438. return that.$util.Tips({
  439. title: that.$t(`删除成功`),
  440. icon: 'success'
  441. }, {
  442. tab: 5,
  443. url: '/pages/points_mall/exchange_record'
  444. });
  445. }).catch(err => {
  446. return that.$util.Tips({
  447. title: err
  448. });
  449. });
  450. },
  451. }
  452. }
  453. </script>
  454. <style scoped lang="scss">
  455. .qs-btn {
  456. width: auto;
  457. height: 60rpx;
  458. text-align: center;
  459. line-height: 60rpx;
  460. border-radius: 50rpx;
  461. color: #fff;
  462. font-size: 27rpx;
  463. padding: 0 3%;
  464. color: #aaa;
  465. border: 1px solid #ddd;
  466. margin-right: 20rpx;
  467. }
  468. .goodCall {
  469. color: #e93323;
  470. text-align: center;
  471. width: 100%;
  472. height: 86rpx;
  473. padding: 0 30rpx;
  474. border-bottom: 1rpx solid #eee;
  475. font-size: 30rpx;
  476. line-height: 86rpx;
  477. background: #fff;
  478. .icon-kefu {
  479. font-size: 36rpx;
  480. margin-right: 15rpx;
  481. }
  482. /* #ifdef MP */
  483. button {
  484. display: flex;
  485. align-items: center;
  486. justify-content: center;
  487. height: 86rpx;
  488. font-size: 30rpx;
  489. color: #e93323;
  490. }
  491. /* #endif */
  492. }
  493. .order-details .header {
  494. padding: 0 30rpx;
  495. height: 150rpx;
  496. }
  497. .order-details .header.on {
  498. background-color: #666 !important;
  499. }
  500. .order-details .header .pictrue {
  501. width: 110rpx;
  502. height: 110rpx;
  503. }
  504. .order-details .header .pictrue image {
  505. width: 100%;
  506. height: 100%;
  507. }
  508. .order-details .header .data {
  509. color: rgba(255, 255, 255, 0.8);
  510. font-size: 24rpx;
  511. margin-left: 27rpx;
  512. }
  513. .order-details .header .data.on {
  514. margin-left: 0;
  515. }
  516. .order-details .header .data .state {
  517. font-size: 30rpx;
  518. font-weight: bold;
  519. color: #fff;
  520. margin-bottom: 7rpx;
  521. }
  522. .order-details .header .data .time {
  523. margin-left: 20rpx;
  524. }
  525. .order-details .nav {
  526. background-color: #fff;
  527. font-size: 26rpx;
  528. color: #282828;
  529. padding: 25rpx 0;
  530. }
  531. .order-details .nav .navCon {
  532. padding: 0 40rpx;
  533. }
  534. .order-details .nav .on {
  535. color: #e93323;
  536. }
  537. .order-details .nav .progress {
  538. padding: 0 65rpx;
  539. margin-top: 10rpx;
  540. }
  541. .order-details .nav .progress .line {
  542. width: 100rpx;
  543. height: 2rpx;
  544. background-color: #939390;
  545. }
  546. .order-details .nav .progress .iconfont {
  547. font-size: 25rpx;
  548. color: #939390;
  549. margin-top: -2rpx;
  550. }
  551. .order-details .address {
  552. font-size: 26rpx;
  553. color: #868686;
  554. background-color: #fff;
  555. margin-top: 13rpx;
  556. padding: 35rpx 30rpx;
  557. }
  558. .order-details .address .name {
  559. font-size: 30rpx;
  560. color: #282828;
  561. margin-bottom: 15rpx;
  562. }
  563. .order-details .address .name .phone {
  564. margin-left: 40rpx;
  565. }
  566. .order-details .line {
  567. width: 100%;
  568. height: 3rpx;
  569. }
  570. .order-details .line image {
  571. width: 100%;
  572. height: 100%;
  573. display: block;
  574. }
  575. .order-details .wrapper {
  576. background-color: #fff;
  577. margin-top: 12rpx;
  578. padding: 30rpx;
  579. }
  580. .order-details .wrapper .item {
  581. font-size: 28rpx;
  582. color: #282828;
  583. }
  584. .order-details .wrapper .item~.item {
  585. margin-top: 20rpx;
  586. }
  587. .order-details .wrapper .item .conter {
  588. color: #868686;
  589. max-width: 460rpx;
  590. height: max-content;
  591. text-align: right;
  592. display: flex;
  593. flex-wrap: wrap;
  594. white-space:normal;
  595. }
  596. .order-details .wrapper .item .conter .copy {
  597. font-size: 20rpx;
  598. color: #333;
  599. border-radius: 3rpx;
  600. border: 1rpx solid #666;
  601. padding: 3rpx 15rpx;
  602. margin-left: 24rpx;
  603. }
  604. .order-details .wrapper .actualPay {
  605. border-top: 1rpx solid #eee;
  606. margin-top: 30rpx;
  607. padding-top: 30rpx;
  608. }
  609. .order-details .wrapper .actualPay .money {
  610. font-weight: bold;
  611. font-size: 30rpx;
  612. }
  613. .order-details .footer {
  614. width: 100%;
  615. height: 100rpx;
  616. position: fixed;
  617. bottom: 0;
  618. left: 0;
  619. background-color: #fff;
  620. padding: 0 30rpx;
  621. box-sizing: border-box;
  622. }
  623. .order-details .footer .bnt {
  624. width: 176rpx;
  625. height: 60rpx;
  626. text-align: center;
  627. line-height: 60rpx;
  628. border-radius: 50rpx;
  629. color: #fff;
  630. font-size: 27rpx;
  631. }
  632. .order-details .footer .bnt.cancel {
  633. color: #aaa;
  634. border: 1rpx solid #ddd;
  635. }
  636. .order-details .footer .bnt~.bnt {
  637. margin-left: 18rpx;
  638. }
  639. .order-details .writeOff {
  640. background-color: #fff;
  641. margin-top: 13rpx;
  642. padding-bottom: 30rpx;
  643. }
  644. .order-details .writeOff .title {
  645. font-size: 30rpx;
  646. color: #282828;
  647. height: 87rpx;
  648. border-bottom: 1px solid #f0f0f0;
  649. padding: 0 30rpx;
  650. line-height: 87rpx;
  651. }
  652. .order-details .writeOff .grayBg {
  653. background-color: #f2f5f7;
  654. width: 590rpx;
  655. height: 384rpx;
  656. border-radius: 20rpx 20rpx 0 0;
  657. margin: 50rpx auto 0 auto;
  658. padding-top: 55rpx;
  659. position: relative;
  660. }
  661. .order-details .writeOff .grayBg .written {
  662. position: absolute;
  663. top: 0;
  664. right: 0;
  665. width: 60rpx;
  666. height: 60rpx;
  667. }
  668. .order-details .writeOff .grayBg .written image {
  669. width: 100%;
  670. height: 100%;
  671. }
  672. .order-details .writeOff .grayBg .pictrue {
  673. width: 290rpx;
  674. height: 290rpx;
  675. margin: 0 auto;
  676. }
  677. .order-details .writeOff .grayBg .pictrue image {
  678. width: 100%;
  679. height: 100%;
  680. display: block;
  681. }
  682. .order-details .writeOff .gear {
  683. width: 590rpx;
  684. height: 30rpx;
  685. margin: 0 auto;
  686. }
  687. .order-details .writeOff .gear image {
  688. width: 100%;
  689. height: 100%;
  690. display: block;
  691. }
  692. .order-details .writeOff .num {
  693. background-color: #f0c34c;
  694. width: 590rpx;
  695. height: 84rpx;
  696. color: #282828;
  697. font-size: 48rpx;
  698. margin: 0 auto;
  699. border-radius: 0 0 20rpx 20rpx;
  700. text-align: center;
  701. padding-top: 4rpx;
  702. }
  703. .order-details .writeOff .rules {
  704. margin: 46rpx 30rpx 0 30rpx;
  705. border-top: 1px solid #f0f0f0;
  706. padding-top: 10rpx;
  707. }
  708. .order-details .writeOff .rules .item {
  709. margin-top: 20rpx;
  710. }
  711. .order-details .writeOff .rules .item .rulesTitle {
  712. font-size: 28rpx;
  713. color: #282828;
  714. }
  715. .order-details .writeOff .rules .item .rulesTitle .iconfont {
  716. font-size: 30rpx;
  717. color: #333;
  718. margin-right: 8rpx;
  719. margin-top: 5rpx;
  720. }
  721. .order-details .writeOff .rules .item .info {
  722. font-size: 28rpx;
  723. color: #999;
  724. margin-top: 7rpx;
  725. }
  726. .order-details .writeOff .rules .item .info .time {
  727. margin-left: 20rpx;
  728. }
  729. .order-details .map {
  730. height: 86rpx;
  731. font-size: 30rpx;
  732. color: #282828;
  733. line-height: 86rpx;
  734. border-bottom: 1px solid #f0f0f0;
  735. margin-top: 13rpx;
  736. background-color: #fff;
  737. padding: 0 30rpx;
  738. }
  739. .order-details .map .place {
  740. font-size: 26rpx;
  741. width: 176rpx;
  742. height: 50rpx;
  743. border-radius: 25rpx;
  744. line-height: 50rpx;
  745. text-align: center;
  746. }
  747. .order-details .map .place .iconfont {
  748. font-size: 27rpx;
  749. height: 27rpx;
  750. line-height: 27rpx;
  751. margin: 2rpx 3rpx 0 0;
  752. }
  753. .order-details .address .name .iconfont {
  754. font-size: 34rpx;
  755. margin-left: 10rpx;
  756. }
  757. .refund {
  758. padding: 0 30rpx 30rpx;
  759. margin-top: 24rpx;
  760. background-color: #fff;
  761. .title {
  762. display: flex;
  763. align-items: center;
  764. font-size: 30rpx;
  765. color: #333;
  766. height: 86rpx;
  767. border-bottom: 1px solid #f5f5f5;
  768. image {
  769. width: 32rpx;
  770. height: 32rpx;
  771. margin-right: 10rpx;
  772. }
  773. }
  774. .con {
  775. padding-top: 25rpx;
  776. font-size: 28rpx;
  777. color: #868686;
  778. }
  779. }
  780. .orderGoods {
  781. background-color: #fff;
  782. margin-top: 12rpx;
  783. }
  784. .orderGoods .total {
  785. width: 100%;
  786. height: 86rpx;
  787. padding: 0 30rpx;
  788. border-bottom: 2rpx solid #f0f0f0;
  789. font-size: 30rpx;
  790. color: #282828;
  791. line-height: 86rpx;
  792. box-sizing: border-box;
  793. }
  794. </style>