index.vue 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904
  1. <template>
  2. <view :style="{ height: pageHeight,colorStyle }">
  3. <view class="top custom_box" style="background: linear-gradient(180deg, rgb(254,245,246), rgb(245,245,245)); color: black;" >
  4. <!-- #ifdef MP || APP-PLUS -->
  5. <view class="sys-head">
  6. <view class="sys-bar" :style="{ height: sysHeight }"></view>
  7. <!-- #ifdef MP -->
  8. <view class="sys-title">订单列表</view>
  9. <!-- #endif -->
  10. </view>
  11. <!-- #endif -->
  12. </view>
  13. <view class="my-order" :style="{ top: sysHeightTop}">
  14. <view class="header-group" style="padding-left: 20rpx;" >
  15. <view class="tabs">
  16. <u-tabs :is-scroll="true" :list="navigationList" @change="statusClick()" lineColor="#B22338"
  17. :inactiveStyle="{ color: '#999999' }" :activeStyle="{ color: '#B22338', fontWeight: 'bold' }"
  18. keyName="title" :current="current"></u-tabs>
  19. </view>
  20. </view>
  21. <view v-for="(item, index) in orderList" :key="index">
  22. <view class="list" >
  23. <view class="myclient_list" @click="goOrderDetails(item.orderId)">
  24. <view class="myclient_list_name">
  25. <view class="nl">
  26. {{item.mainTitle}}
  27. </view>
  28. <view class="status">
  29. {{item.orderStateDesc}}
  30. </view>
  31. </view>
  32. <view class="myclient_list_content">
  33. <view class="phone">
  34. <image referrerpolicy="no-referrer" src="http://www.gzzzyd.com/groupon/home_slices/日期@2x.png" />
  35. <text>
  36. 团购日期: {{item.grouponStartTime}} 至 {{item.grouponEndTime}}
  37. </text>
  38. </view>
  39. <view class="time">
  40. <image referrerpolicy="no-referrer" src="http://www.gzzzyd.com/groupon/home_slices/出厂编号-线@2x.png" />
  41. <text>
  42. 订单编号: {{item.orderNo}}
  43. </text>
  44. </view>
  45. </view>
  46. </view>
  47. <view class="all-products-body" v-for="(goods, index2) in item.goodsList" :key="index2">
  48. <view class="all-products-item" @click="addGoodPopupShow = true">
  49. <image
  50. :src="goods.goodsImage"
  51. mode="scaleToFill" />
  52. <view class="all-products-item-content">
  53. <view class="all-products-item-content-t">
  54. {{goods.goodsName}}
  55. </view>
  56. <view class="all-products-item-content-b">
  57. <view style="display:flex;">
  58. <text class="red"> ¥{{goods.goodsPrice}}</text>
  59. </view>
  60. <view>
  61. <view class="count"> x {{goods.goodsNum}}</view>
  62. </view>
  63. </view>
  64. </view>
  65. </view>
  66. </view>
  67. <view class="self-pickup-point">
  68. <view class="a-t">
  69. 最近的自提网点:
  70. </view>
  71. <view class="a-m">
  72. <view class="am1">
  73. <view class="am1-1">
  74. {{item.selfTakeName}}
  75. </view>
  76. <view class="am1-2">
  77. <image src="http://www.gzzzyd.com/groupon/order_details/导航图标@2x.png" mode="scaleToFill" />
  78. </view>
  79. </view>
  80. </view>
  81. <view class="a-b">
  82. <view class="a-b1">
  83. 对接团长:
  84. <text class="red">
  85. {{item.commander}}
  86. </text>
  87. </view>
  88. <view class="a-b2">
  89. <image src="http://www.gzzzyd.com/groupon/order_details/微信@2x.png" mode="scaleToFill" />
  90. <image src="http://www.gzzzyd.com/groupon/order_details/电话键盘_填充@2x.png" mode="scaleToFill" />
  91. </view>
  92. </view>
  93. </view>
  94. <view class="op-area">
  95. <button v-if="item.orderState == 1" class="action-btn" @click="cancelOrder(item.orderId)">取消订单</button>
  96. <button v-if="item.orderState == 1" class="action-btn" @click="goPay(item)">立即付款</button>
  97. <!-- <button v-if="item.orderState == 4" class="info-btn" @click="goPay()">申请退货</button> -->
  98. <button v-if="item.canRefund" class="info-btn" @click="refundOrder(item.orderId)">申请退款</button>
  99. <button v-if="item.orderState == 2" class="action-btn" @click="viewPickCode(item.pickupCode)">取货码 {{item.pickupCode}}</button>
  100. </view>
  101. </view>
  102. </view>
  103. <view class="loadingicon acea-row row-center-wrapper" v-if="orderList.length > 0">
  104. <text class="loading iconfont icon-jiazai" :hidden="loading == false"></text>
  105. {{ loadTitle }}
  106. </view>
  107. <view v-if="orderList.length == 0">
  108. <emptyPage v-if="!loading" :title="$t(`暂无订单`)"></emptyPage>
  109. <view class="loadingicon acea-row row-center-wrapper">
  110. <text class="loading iconfont icon-jiazai" :hidden="loading == false"></text>
  111. </view>
  112. </view>
  113. </view>
  114. <!-- #ifndef MP -->
  115. <home></home>
  116. <!-- #endif -->
  117. <payment :payMode="payMode" :pay_close="pay_close" @onChangeFun="onChangeFun" :order_id="pay_order_id"
  118. :totalPrice="totalPrice"></payment>
  119. </view>
  120. </template>
  121. <script>
  122. let sysHeight = uni.getSystemInfoSync().statusBarHeight + 'px';
  123. let sysHeightTop = (uni.getSystemInfoSync().statusBarHeight + 43) + 'px';
  124. const app = getApp();
  125. import {
  126. getUserOrderPage,
  127. orderCancel,
  128. postUserOrderRefund
  129. } from '@/api/home.js';
  130. import {
  131. getOrderList,
  132. orderData,
  133. orderDel,
  134. orderPay
  135. } from '@/api/order.js';
  136. import {
  137. getUserInfo
  138. } from '@/api/user.js';
  139. import {
  140. openOrderSubscribe
  141. } from '@/utils/SubscribeMessage.js';
  142. import home from '@/components/home';
  143. import payment from '@/components/payment';
  144. import {
  145. toLogin
  146. } from '@/libs/login.js';
  147. import {
  148. mapGetters
  149. } from 'vuex';
  150. // #ifdef MP
  151. import authorize from '@/components/Authorize';
  152. // #endif
  153. import emptyPage from '@/components/emptyPage.vue';
  154. import colors from '@/mixins/color.js';
  155. export default {
  156. components: {
  157. payment,
  158. home,
  159. emptyPage,
  160. // #ifdef MP
  161. authorize
  162. // #endif
  163. },
  164. mixins: [colors],
  165. data () {
  166. return {
  167. navigationList: [{
  168. title: '全部',
  169. id: 0,
  170. orderStatus: 0,
  171. }
  172. ,
  173. {
  174. title: '待付款',
  175. id: 1,
  176. orderStatus: 1,
  177. },
  178. {
  179. title: '待提货',
  180. id: 2,
  181. orderStatus: 2,
  182. },
  183. {
  184. title: '已完成',
  185. id: 3,
  186. orderStatus: 4,
  187. },
  188. {
  189. title: '售后',
  190. id: 4,
  191. orderStatus: '',
  192. },
  193. ],
  194. pageHeight: app.globalData.windowHeight,
  195. sysHeight: sysHeight,
  196. sysHeightTop: sysHeightTop,
  197. loading: false, //是否加载中
  198. loadend: false, //是否加载完毕
  199. loadTitle: this.$t(`加载更多`), //提示语
  200. orderList: [], //订单数组
  201. orderData: {}, //订单详细统计
  202. orderStatus: 0, //订单状态
  203. page: 1,
  204. limit: 5,
  205. payMode: [{
  206. name: this.$t(`微信支付`),
  207. icon: 'icon-weixinzhifu',
  208. value: 'weixin',
  209. title: this.$t(`使用微信快捷支付`),
  210. payStatus: true
  211. },
  212. // {
  213. // name: this.$t(`支付宝支付`),
  214. // icon: 'icon-zhifubao',
  215. // value: 'alipay',
  216. // title: this.$t(`使用支付宝支付`),
  217. // payStatus: true
  218. // },
  219. // {
  220. // name: this.$t(`余额支付`),
  221. // icon: 'icon-yuezhifu',
  222. // value: 'yue',
  223. // title: this.$t(`可用余额`),
  224. // number: 0,
  225. // payStatus: true
  226. // }, {
  227. // "name": this.$t(`好友代付`),
  228. // "icon": "icon-haoyoudaizhifu",
  229. // value: 'friend',
  230. // title: this.$t(`找微信好友支付`),
  231. // payStatus: 1,
  232. // }
  233. ],
  234. pay_close: false,
  235. pay_order_id: '',
  236. pay_orderId: '',
  237. totalPrice: '0',
  238. isAuto: false, //没有授权的不会自动授权
  239. isShowAuth: false ,//是否隐藏授权
  240. current: 0
  241. };
  242. },
  243. computed: mapGetters(['isLogin']),
  244. onShow () {
  245. console.log("onShow事件,全局变量1--------", getApp().globalData.switchId, this.$route)
  246. let ContentIndex = getApp().globalData.switchId//获取到传参
  247. if(ContentIndex == '待付款') {
  248. this.current = 1;
  249. this.orderStatus = 1;
  250. } else if (ContentIndex == '待提货') {
  251. this.current = 2;
  252. this.orderStatus = 2;
  253. } else if (ContentIndex == '已完成') {
  254. this.current = 3;
  255. this.orderStatus = 4;
  256. }
  257. if (this.isLogin) {
  258. this.page = 1;
  259. this.orderList = []
  260. this.loadend = false;
  261. // this.onLoadFun();
  262. this.getOrderList();
  263. } else {
  264. toLogin();
  265. }
  266. },
  267. methods: {
  268. onLoadFun () {
  269. this.getOrderData();
  270. this.getUserInfo();
  271. },
  272. // 授权关闭
  273. authColse: function (e) {
  274. this.isShowAuth = e;
  275. },
  276. /**
  277. * 事件回调
  278. *
  279. */
  280. onChangeFun: function (e) {
  281. let opt = e;
  282. let action = opt.action || null;
  283. let value = opt.value != undefined ? opt.value : null;
  284. action && this[action] && this[action](value);
  285. },
  286. /**
  287. * 获取用户信息
  288. *
  289. */
  290. getUserInfo: function () {
  291. let that = this;
  292. getUserInfo().then(res => {
  293. that.payMode[2].number = res.data.now_money;
  294. that.$set(that, 'payMode', that.payMode);
  295. });
  296. },
  297. /**
  298. * 关闭支付组件
  299. *
  300. */
  301. payClose: function () {
  302. this.pay_close = false;
  303. },
  304. /**
  305. * 查看取货码
  306. * @param {Object} code
  307. */
  308. viewPickCode(code) {
  309. },
  310. /**
  311. * 生命周期函数--监听页面加载
  312. */
  313. onLoad: function (options) {
  314. console.log('onLoad事件', options);
  315. if ('params' in options) {
  316. this.obj = JSON.parse(decodeURIComponent(options.params));
  317. }
  318. if (options.status) this.orderStatus = options.status;
  319. },
  320. /**
  321. * 取消订单
  322. *
  323. */
  324. cancelOrder: function (order_id) {
  325. let that = this;
  326. if (!order_id)
  327. return that.$util.Tips({
  328. title: that.$t(`缺少订单号无法取消订单`)
  329. });
  330. uni.showModal({
  331. title: that.$t(`取消订单`),
  332. content: that.$t(`确定取消该订单`),
  333. success: function (res) {
  334. if (res.confirm) {
  335. orderCancel(order_id)
  336. .then(res => {
  337. return that.$util.Tips({
  338. title: res.msg,
  339. icon: 'success'
  340. });
  341. })
  342. .catch(err => {
  343. return that.$util.Tips({
  344. title: err
  345. });
  346. });
  347. } else if (res.cancel) {
  348. return that.$util.Tips({
  349. title: that.$t(`已取消`)
  350. });
  351. }
  352. }
  353. });
  354. },
  355. refundOrder: function (orderId) {
  356. let that = this;
  357. if (!orderId)
  358. return that.$util.Tips({
  359. title: that.$t(`缺少订单号无法申请退款订单`)
  360. });
  361. uni.showModal({
  362. title: that.$t(`申请退款`),
  363. content: that.$t(`确定申请退款该订单`),
  364. success: function (res) {
  365. if (res.confirm) {
  366. postUserOrderRefund({ id: orderId })
  367. .then(res => {
  368. this.getOrderList()
  369. return that.$util.Tips({
  370. title: "申请成功",
  371. icon: 'success'
  372. });
  373. })
  374. .catch(err => {
  375. return that.$util.Tips({
  376. title: err
  377. });
  378. });
  379. } else if (res.cancel) {
  380. return that.$util.Tips({
  381. title: that.$t(`已取消`)
  382. });
  383. }
  384. }
  385. });
  386. },
  387. /**
  388. * 打开支付组件
  389. *
  390. */
  391. goPay: function (item) {
  392. this.$set(this, 'pay_close', true);
  393. this.$set(this, 'pay_order_id', item.orderNo);
  394. this.$set(this, 'pay_orderId', item.orderId);
  395. this.$set(this, 'totalPrice', item.paymentAmount);
  396. },
  397. /**
  398. * 支付成功回调
  399. *
  400. */
  401. pay_complete: function () {
  402. this.loadend = false;
  403. this.page = 1;
  404. this.$set(this, 'orderList', []);
  405. this.pay_close = false;
  406. uni.navigateTo({
  407. url: '/pages/goods/order_pay_status/index?order_id=' + this.pay_orderId +
  408. '&msg=' + this.$t(`支付成功`) + '&type=3&totalPrice=' + this.totalPrice
  409. })
  410. this.pay_order_id = '';
  411. this.pay_orderId = '';
  412. this.getOrderData();
  413. this.getOrderList();
  414. },
  415. /**
  416. * 支付失败回调
  417. *
  418. */
  419. pay_fail: function () {
  420. this.pay_close = false;
  421. this.pay_order_id = '';
  422. },
  423. /**
  424. * 去订单详情
  425. */
  426. goOrderDetails (orderId) {
  427. uni.navigateTo({
  428. url: '/pages/groupbuying_details/order_details_list/index?orderId=' + orderId
  429. });
  430. },
  431. /**
  432. * 切换类型
  433. */
  434. statusClick: function (status) {
  435. if (status.orderStatus == this.orderStatus) return;
  436. this.orderStatus = status.orderStatus;
  437. this.loadend = false;
  438. this.page = 1;
  439. this.$set(this, 'orderList', []);
  440. this.getOrderList();
  441. },
  442. /**
  443. * 获取订单列表
  444. */
  445. getOrderList: function () {
  446. let that = this;
  447. if (that.loadend) return;
  448. if (that.loading) return;
  449. that.loading = true;
  450. that.loadTitle = that.$t(`加载更多`);
  451. getUserOrderPage({
  452. current: that.page,
  453. size: that.limit,
  454. orderState: this.orderStatus
  455. }).then(res => {
  456. let list = res.data.records || [];
  457. let loadend = list.length < that.limit;
  458. that.orderList = that.$util.SplitArray(list, that.orderList);
  459. that.$set(that, 'orderList', that.orderList);
  460. that.loadend = loadend;
  461. that.loading = false;
  462. that.loadTitle = loadend ? that.$t(`没有更多内容啦~`) : that.$t(`加载更多`);
  463. that.page = that.page + 1;
  464. }).catch(err => {
  465. that.loading = false;
  466. that.loadTitle = that.$t(`加载更多`);
  467. });
  468. },
  469. /**
  470. * 删除订单
  471. */
  472. delOrder: function (order_id, index) {
  473. let that = this;
  474. uni.showModal({
  475. title: that.$t(`删除订单`),
  476. content: that.$t(`确定删除该订单`),
  477. success: function (res) {
  478. if (res.confirm) {
  479. orderDel(order_id)
  480. .then(res => {
  481. that.orderList.splice(index, 1);
  482. that.$set(that, 'orderList', that.orderList);
  483. that.$set(that.orderData, 'unpaid_count', that.orderData
  484. .unpaid_count - 1);
  485. that.getOrderData();
  486. return that.$util.Tips({
  487. title: that.$t(`删除成功`),
  488. icon: 'success'
  489. });
  490. })
  491. .catch(err => {
  492. return that.$util.Tips({
  493. title: err
  494. });
  495. });
  496. } else if (res.cancel) {
  497. return that.$util.Tips({
  498. title: that.$t(`已取消`)
  499. });
  500. }
  501. }
  502. });
  503. },
  504. },
  505. onReachBottom: function () {
  506. this.getOrderList();
  507. }
  508. };
  509. </script>
  510. <style scoped lang="scss">
  511. .my-order {
  512. position: relative;
  513. }
  514. .my-order .header {
  515. height: 220rpx;
  516. padding: 0 30rpx;
  517. }
  518. .my-order .header .picTxt {
  519. height: 160rpx;
  520. }
  521. .my-order .header .picTxt .text {
  522. color: rgba(255, 255, 255, 0.8);
  523. font-size: 26rpx;
  524. font-family: 'Guildford Pro';
  525. }
  526. .my-order .header .picTxt .text .name {
  527. font-size: 34rpx;
  528. font-weight: bold;
  529. color: #fff;
  530. margin-bottom: 20rpx;
  531. }
  532. .my-order .header .picTxt .pictrue {
  533. width: 122rpx;
  534. height: 109rpx;
  535. }
  536. .my-order .header .picTxt .pictrue image {
  537. width: 100%;
  538. height: 100%;
  539. }
  540. .my-order .nav {
  541. background-color: #F9F9F9;
  542. width: 100%;
  543. // height: 140rpx;
  544. }
  545. .my-order .nav .item {
  546. text-align: center;
  547. font-size: 26rpx;
  548. color: #282828;
  549. padding: 27rpx 0;
  550. border-bottom: 5rpx solid transparent;
  551. }
  552. .my-order .nav .item.on {
  553. /* #ifdef H5 || MP */
  554. font-weight: bold;
  555. /* #endif */
  556. /* #ifdef APP-PLUS */
  557. color: #000;
  558. /* #endif */
  559. border-color: var(--view-theme);
  560. }
  561. .my-order .nav .item .num {
  562. margin-top: 18rpx;
  563. }
  564. .list {
  565. width: 100%;
  566. background: white;
  567. margin: 14rpx auto 0 auto;
  568. }
  569. .noCart {
  570. margin-top: 171rpx;
  571. padding-top: 0.1rpx;
  572. }
  573. .noCart .pictrue {
  574. width: 414rpx;
  575. height: 336rpx;
  576. margin: 78rpx auto 56rpx auto;
  577. }
  578. .noCart .pictrue image {
  579. width: 100%;
  580. height: 100%;
  581. }
  582. .my-order .list .item .item-info .text .money .return {
  583. // color: var(--view-priceColor);
  584. margin-top: 10rpx;
  585. font-size: 24rpx;
  586. }
  587. .myclient_list {
  588. padding-left: 30px;
  589. padding-top: 30rpx;
  590. padding-bottom: 30rpx;
  591. margin-top: 30rpx;
  592. background: #FFFFFF;
  593. .myclient_list_name {
  594. display: flex;
  595. justify-content: space-between;
  596. margin-bottom: 15rpx;
  597. min-height: 44rpx;
  598. font-size: 28rpx;
  599. font-weight: 500;
  600. color: #111111;
  601. line-height: 44rpx;
  602. display: flex;
  603. .nv {
  604. flex-grow: 1;
  605. }
  606. .status {
  607. min-width: 100rpx;
  608. text-align: right;
  609. margin-right: 30rpx;
  610. color: #FEA800;
  611. }
  612. }
  613. .myclient_list_content {
  614. image {
  615. width: 24rpx;
  616. height: 24rpx;
  617. margin-right: 20rpx;
  618. }
  619. .phone {
  620. margin-bottom: 15rpx;
  621. height: 44rpx;
  622. font-size: 24rpx;
  623. font-weight: 400;
  624. color: #999999;
  625. line-height: 44rpx;
  626. }
  627. .time {
  628. height: 44rpx;
  629. font-size: 24rpx;
  630. font-weight: 400;
  631. color: #999999;
  632. line-height: 44rpx;
  633. }
  634. }
  635. }
  636. .all-products-body {
  637. background: white;
  638. padding-left: 30px;
  639. .all-products-item {
  640. display: flex;
  641. margin-bottom: 20rpx;
  642. image {
  643. margin: auto;
  644. width: 128rpx;
  645. height: 128rpx;
  646. margin-right: 20rpx;
  647. border: 2rpx solid #FFFFFF;
  648. }
  649. .all-products-item-content {
  650. flex-grow: 1;
  651. display: flex;
  652. flex-direction: column;
  653. max-width: calc(100% - 128rpx);
  654. .all-products-item-content-t {
  655. flex: 1;
  656. font-size: 24rpx;
  657. font-weight: 400;
  658. margin-right: 30rpx;
  659. color: #333333;
  660. line-height: 40rpx;
  661. }
  662. .all-products-item-content-b {
  663. flex: 1;
  664. font-size: 28rpx;
  665. font-weight: 500;
  666. line-height: 80rpx;
  667. display: flex;
  668. justify-content: space-between;
  669. .red {
  670. display: block;
  671. font-size: 28rpx;
  672. font-weight: 500;
  673. color: #B22338 !important;
  674. margin-right: 10rpx;
  675. }
  676. .line-thr {
  677. display: block;
  678. font-size: 28rpx;
  679. font-weight: 400;
  680. color: #999999;
  681. text-decoration: line-through;
  682. }
  683. .count {
  684. font-size: 24rpx;
  685. font-weight: 400;
  686. color: #999999;
  687. margin-right: 30rpx;
  688. }
  689. }
  690. }
  691. }
  692. }
  693. .a-t {
  694. padding: 0 30rpx;
  695. display: flex;
  696. justify-content: space-between;
  697. height: 44rpx;
  698. margin-bottom: 20rpx;
  699. font-size: 20rpx;
  700. font-weight: 400;
  701. color: #666666;
  702. line-height: 44rpx;
  703. }
  704. .a-m {
  705. padding: 0 30rpx;
  706. .am1 {
  707. display: flex;
  708. justify-content: space-between;
  709. margin-bottom: 20rpx;
  710. .am1-1 {
  711. height: 32rpx;
  712. font-size: 20rpx;
  713. font-weight: 500;
  714. color: #B22338;
  715. line-height: 32rpx;
  716. }
  717. .am1-2 {
  718. height: 36rpx;
  719. font-size: 20rpx;
  720. font-weight: 400;
  721. color: #666666;
  722. line-height: 36rpx;
  723. image {
  724. margin-left: 30rpx;
  725. vertical-align: middle;
  726. height: 34rpx;
  727. width: 34rpx;
  728. }
  729. }
  730. }
  731. .am2 {
  732. margin-bottom: 20rpx;
  733. height: 34rpx;
  734. font-size: 24rpx;
  735. font-weight: 400;
  736. color: #999999;
  737. line-height: 34rpx;
  738. }
  739. }
  740. .a-b {
  741. padding: 0 30rpx;
  742. width: 100%;
  743. background: #FFF7F8;
  744. border: 1px solid dashed #333333;
  745. height: 60rpx;
  746. line-height: 60rpx;
  747. display: flex;
  748. justify-content: space-between;
  749. .a-b1 {
  750. font-size: 20rpx;
  751. font-weight: 400;
  752. color: #666666;
  753. .red {
  754. font-size: 20rpx;
  755. font-weight: 500;
  756. color: #B22338;
  757. }
  758. }
  759. .a-b2 {
  760. image {
  761. vertical-align: middle;
  762. margin-left: 30rpx;
  763. height: 34rpx;
  764. width: 34rpx;
  765. }
  766. }
  767. }
  768. .self-pickup-point {
  769. background: #FFF7F8;
  770. padding-top: 20rpx;
  771. margin: 0 30rpx;
  772. }
  773. .op-area {
  774. height: 120rpx;
  775. display: flex;
  776. justify-content: flex-end;
  777. line-height: 120rpx;
  778. padding: 20rpx 0;
  779. text-align: right;
  780. .action-btn {
  781. min-width: 200rpx;
  782. background: #FFF7F8;
  783. border-radius: 32rpx;
  784. border: 2rpx solid #B22338;
  785. margin-right: 30rpx;
  786. height: 64rpx;
  787. font-size: 24rpx;
  788. font-weight: 400;
  789. color: #B22338;
  790. line-height: 64rpx;
  791. }
  792. .info-btn {
  793. width: 200rpx;
  794. background: #F5F5F5;
  795. border-radius: 32rpx;
  796. margin-right: 30rpx;
  797. height: 64rpx;
  798. font-size: 24rpx;
  799. font-weight: 400;
  800. color: #666666;
  801. line-height: 64rpx;
  802. }
  803. }
  804. .sys-head {
  805. position: relative;
  806. width: 100%;
  807. // background: linear-gradient(90deg, $bg-star1 0%, $bg-end1 100%);
  808. .bg {
  809. position: absolute;
  810. left: 0;
  811. top: 0;
  812. width: 100%;
  813. height: 100%;
  814. background: var(--view-theme);
  815. background-size: 100% auto;
  816. background-position: left bottom;
  817. }
  818. .sys-title {
  819. z-index: 10;
  820. position: relative;
  821. height: 43px;
  822. text-align: left;
  823. line-height: 43px;
  824. font-size: 36rpx;
  825. color: rgba(17, 17, 17, 1);
  826. font-weight: bolder;
  827. padding-left: 36rpx;
  828. }
  829. }
  830. </style>