createOrder.vue 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797
  1. <template>
  2. <view>
  3. <navigator v-if="tabCurrentIndex == 0" url="/pages/address/address?source=1" class="address-section">
  4. <view class="order-content" v-if="addressData.real_name">
  5. <text class="iconfont iconlocation"></text>
  6. <view class="cen">
  7. <view class="top">
  8. <text class="name">{{ addressData.real_name }}</text>
  9. <text class="mobile">{{ addressData.phone }}</text>
  10. </view>
  11. <text class="address">{{ addressData.province + addressData.city + addressData.district }} {{ addressData.detail }}</text>
  12. </view>
  13. <text class="iconfont iconenter"></text>
  14. </view>
  15. <view class="order-content" v-if="!addressData.real_name">
  16. <view class="addAddress">
  17. <text class="iconfont iconaddition"></text>
  18. <text>添加收货地址</text>
  19. </view>
  20. </view>
  21. <image class="a-bg" :src="addressImg"></image>
  22. </navigator>
  23. <view class="goods-section" v-for="(ls, ind) in shopList" :key="ind">
  24. <view class="g-item">
  25. <image :src="ls.productInfo.image"></image>
  26. <view class="right">
  27. <text class="title clamp">{{ ls.productInfo.store_name }}</text>
  28. <text class="spec">{{ ls.productInfo.attrInfo ? ls.productInfo.attrInfo.suk : '默认' }}</text>
  29. <view class="price-box" v-if="goodsType != 0">
  30. <text class="price">{{ ls.productInfo.attrInfo ? ls.productInfo.attrInfo.money * 1 + ls.productInfo.attrInfo.money_type : ls.productInfo.money * 1 + ls.productInfo.money_type }}</text>
  31. <text class="number">{{ 'x ' + ls.cart_num + (ls.productInfo.unit_name || '') }}</text>
  32. </view>
  33. <view class="price-box" v-else>
  34. <text class="price">{{ ls.productInfo.attrInfo ? ls.productInfo.attrInfo.price * 1 : ls.productInfo.price * 1 }}</text>
  35. <text class="number">{{ 'x ' + ls.cart_num + (ls.productInfo.unit_name || '') }}</text>
  36. </view>
  37. </view>
  38. </view>
  39. </view>
  40. <!-- 优惠明细 -->
  41. <view class="yt-list">
  42. <view class="yt-list-cell b-b" @click="couponListshow ? toggleMask('show') : ''">
  43. <view class="cell-icon">券</view>
  44. <text class="cell-tit clamp">优惠券</text>
  45. <text class="cell-tip active" v-if="couponListshow && !couponChecked.coupon_price">选择优惠券</text>
  46. <text class="cell-tip red" v-if="couponChecked.coupon_price">-¥{{ couponChecked.coupon_price }}</text>
  47. <text class="cell-tip disabled" v-if="!couponListshow && !couponChecked.coupon_price">没有优惠券</text>
  48. <text class="cell-more wanjia wanjia-gengduo-d"></text>
  49. </view>
  50. <view class="yt-list-cell b-b" v-if="moneyAll.storeFreePostage > 0">
  51. <view class="cell-icon hb">减</view>
  52. <text class="cell-tit clamp">商家促销</text>
  53. <text class="cell-tip disabled">满{{ moneyAll.storeFreePostage }}包邮</text>
  54. </view>
  55. </view>
  56. <!-- 金额明细 -->
  57. <view class="yt-list" v-if="goodsType == 0">
  58. <view class="yt-list-cell b-b">
  59. <text class="cell-tit clamp">积分抵扣{{ '(当前积分:' + integralAll + ')' }}</text>
  60. <view class="cell-tip"><radio @click="checkedPoints = !checkedPoints" color=" #5dbc7c" :checked="checkedPoints" /></view>
  61. </view>
  62. <view class="yt-list-cell b-b">
  63. <text class="cell-tit clamp">运费</text>
  64. <text class="cell-tip">{{ Postage }}</text>
  65. </view>
  66. <view class="yt-list-cell b-b">
  67. <text class="cell-tit clamp">备注</text>
  68. <input class="desc" type="text" v-model="desc" placeholder="请填写备注信息" placeholder-class="placeholder" />
  69. </view>
  70. </view>
  71. <view class="yt-list" v-if="goodsType == 0">
  72. <view class="yt-list-cell b-b">
  73. <text class="cell-tit clamp">商品金额</text>
  74. <text class="cell-tip">¥{{ payAllMoney }}</text>
  75. </view>
  76. <view class="yt-list-cell b-b" v-if="checkedPoints && integralShow">
  77. <text class="cell-tit clamp">积分抵扣</text>
  78. <text class="cell-tip">-¥{{ integralMoney }}</text>
  79. </view>
  80. <view class="yt-list-cell b-b" v-if="moneyAll.vipPrice > 0">
  81. <text class="cell-tit clamp">VIP优惠</text>
  82. <text class="cell-tip">-¥{{ moneyAll.vipPrice }}</text>
  83. </view>
  84. </view>
  85. <!-- 底部 -->
  86. <view class="footer">
  87. <view class="price-content">
  88. <text>实付款</text>
  89. <text class="price-tip" v-if="goodsType == 0">¥</text>
  90. <text class="price">{{ payPrice }}</text>
  91. </view>
  92. <text class="submit" :class="{ submitNo: !payType }" @click="payType ? submit() : ''">提交订单</text>
  93. </view>
  94. <!-- 优惠券面板 -->
  95. <view class="mask" :class="maskState === 0 ? 'none' : maskState === 1 ? 'show' : ''" @click="toggleMask">
  96. <view class="mask-content">
  97. <!-- 优惠券页面,仿mt -->
  98. <view class="coupon-item" @click="checkedCp(item)" v-for="(item, index) in couponList" :key="index">
  99. <view class="con">
  100. <view class="left">
  101. <text class="title">{{ item.coupon_title }}</text>
  102. <text class="time">领取时间{{ item.add_time }}</text>
  103. </view>
  104. <view class="right">
  105. <text class="price">{{ item.coupon_price }}</text>
  106. <text>满{{ item.use_min_price }}可用</text>
  107. </view>
  108. <view class="circle l"></view>
  109. <view class="circle r"></view>
  110. </view>
  111. <text class="tips">有效期至{{ item.end_time }}</text>
  112. </view>
  113. </view>
  114. </view>
  115. </view>
  116. </template>
  117. <script>
  118. import { confirm,computedOrderkey,couponsOrder } from '@/api/order.js';
  119. import { getUserInfo } from '@/api/user.js';
  120. import { cartAdd } from '@/api/product.js';
  121. export default {
  122. data() {
  123. return {
  124. addressImg:
  125. 'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAu4AAAAFCAYAAAAaAWmiAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6Rjk3RjkzMjM2NzMxMTFFOUI4RkU4OEZGMDcxQzgzOEYiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6Rjk3RjkzMjQ2NzMxMTFFOUI4RkU4OEZGMDcxQzgzOEYiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpGOTdGOTMyMTY3MzExMUU5QjhGRTg4RkYwNzFDODM4RiIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpGOTdGOTMyMjY3MzExMUU5QjhGRTg4RkYwNzFDODM4RiIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PrEOZlQAAAiuSURBVHjazJp7bFvV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',
  126. // 当前选中的支付方式
  127. tabCurrentIndex: 0,
  128. maskState: 0, //优惠券面板显示状态
  129. desc: '', //备注
  130. payType: 1, //1微信 2支付宝
  131. // 优惠券列表
  132. couponList: [],
  133. couponListshow: false, //是有可以显示优惠券列表
  134. couponChecked: {}, //选中的优惠券
  135. // 收货地址
  136. addressData: {},
  137. // 店铺地址
  138. shopAddress: {
  139. name: '',
  140. mobile: '',
  141. addressName: '',
  142. address: '',
  143. area: '',
  144. default: false
  145. },
  146. // 商品列表
  147. shopList: [],
  148. // 购物车id
  149. cartId: '',
  150. //购物金额详情
  151. moneyAll: {
  152. storeFreePostage: 0, //邮费优惠
  153. storePostage: 0, //邮费
  154. totalPrice: 0, //总支付金额
  155. vipPrice: 0 //vip优惠价
  156. },
  157. payPrice: 0, //总支付金额
  158. orderKey: '', //订单id
  159. checkedPoints: false, //判断是否积分抵扣
  160. integralAll: 0, //可使用的积分
  161. integralMoney: 0, //积分抵扣金额
  162. integralShow: false, //是否显示积分抵扣金额
  163. payType: true, //是否可支付
  164. pinkid: '', //保存拼团商品id
  165. goodsType:'',
  166. };
  167. },
  168. onLoad(option) {
  169. if (option.goodsType){
  170. this.goodsType = option.goodsType
  171. }
  172. // 判断是否为拼团商品
  173. if (option.type == 'pink') {
  174. this.pinkid = option.pinkId;
  175. this.cartAdd(option);
  176. } else {
  177. // 保存当前商品在购物车中的id
  178. this.cartId = option.id;
  179. this.loadData();
  180. }
  181. this.getUserInfo();
  182. },
  183. watch: {
  184. checkedPoints(newValue, oldValue) {
  185. this.integralShow = false;
  186. this.payMoneyNub();
  187. }
  188. },
  189. computed: {
  190. Postage() {
  191. let money = +this.moneyAll.storePostage;
  192. if (money == 0) {
  193. return '免运费';
  194. } else {
  195. return '¥' + money;
  196. }
  197. },
  198. payAllMoney() {
  199. return +this.moneyAll.totalPrice + +this.moneyAll.vipPrice;
  200. }
  201. },
  202. methods: {
  203. // 添加商品到购物车
  204. cartAdd(opt) {
  205. let obj = this;
  206. cartAdd({
  207. cartNum: 1, //商品数量
  208. new: 1, //商品是否新增加到购物车1为不加入0为加入
  209. mer_id: +opt.merid, //商店id
  210. combinationId: +opt.gid, //拼团商品id
  211. productId: +opt.pid //普通商品id
  212. })
  213. .then(function(e) {
  214. let da = e.data;
  215. // 獲取购物车号
  216. obj.cartId = da.cartId;
  217. // 加载数据
  218. obj.loadData();
  219. })
  220. .catch(e => {
  221. console.log(e);
  222. });
  223. },
  224. // 加载用户基础信息
  225. getUserInfo() {
  226. getUserInfo({}).then(({ data }) => {
  227. this.integralAll = data.integral;
  228. });
  229. },
  230. // 计算支付金额
  231. payMoneyNub() {
  232. computedOrderkey({
  233. orderkey: this.orderKey,
  234. useIntegral: this.checkedPoints ? 1 : 0, //是否积分抵扣
  235. couponId: this.couponChecked.id, //优惠券编号
  236. addressId: this.addressData.id //地址编号
  237. })
  238. .then(({ data }) => {
  239. const obj = this
  240. console.log(data,'111');
  241. this.payType = true;
  242. this.integralShow = true;
  243. // 获取支付金额
  244. if(this.goodsType == 0){
  245. this.payPrice = +data.result.pay_price;
  246. }else {
  247. const arr = Object.keys(data.result.exchangeMoney);
  248. arr.forEach(e => {
  249. if(e == obj.goodsType){
  250. obj.payPrice = data.result.exchangeMoney[e] * 1 + e
  251. }
  252. });
  253. }
  254. this.integralMoney = data.result.deduction_price;
  255. })
  256. .catch(e => {
  257. console.log(e);
  258. this.integralShow = false;
  259. this.payType = false;
  260. });
  261. },
  262. // 是否使用积分
  263. checkedIntegral() {
  264. this.checkedPoints = !this.checkedPoints;
  265. },
  266. // 选中优惠券
  267. checkedCp(item) {
  268. this.couponChecked = item;
  269. this.payMoneyNub();
  270. },
  271. // // 加载优惠券列表
  272. // couponsOrder(money) {
  273. // couponsOrder({}, money).then(e => {
  274. // if (e.data.length > 0) {
  275. // this.couponListshow = true;
  276. // }
  277. // this.couponList = e.data;
  278. // });
  279. // },
  280. //顶部tab点击
  281. tabClick(index) {
  282. this.tabCurrentIndex = index;
  283. },
  284. //显示优惠券面板
  285. toggleMask(type) {
  286. let timer = type === 'show' ? 10 : 300;
  287. let state = type === 'show' ? 1 : 0;
  288. this.maskState = 2;
  289. setTimeout(() => {
  290. this.maskState = state;
  291. }, timer);
  292. },
  293. loadData() {
  294. let obj = this;
  295. confirm({ cartId: obj.cartId+'' }).then(({ data }) => {
  296. obj.addressData = data.addressInfo || {};
  297. obj.shopList = data.cartInfo; //商品列表
  298. obj.moneyAll = data.priceGroup; //金额数据
  299. obj.orderKey = data.orderKey; //订单key
  300. // 计算金额
  301. this.payMoneyNub();
  302. // 加载优惠券
  303. // obj.couponsOrder(data.priceGroup.totalPrice);
  304. });
  305. },
  306. // 购买数量变化
  307. numberChange(data) {
  308. this.number = data.number;
  309. },
  310. // 修改支付方式
  311. changePayType(type) {
  312. this.payType = type;
  313. },
  314. // 提交订单
  315. submit() {
  316. if (this.checkedPoints && this.shopList.length > 1) {
  317. this.$api.msg('积分商品只可单件购买');
  318. return false;
  319. }
  320. if (!this.addressData.real_name) {
  321. this.$api.msg('请选择收货地址');
  322. return false;
  323. }
  324. let url = '/pages/money/pay?key='+ this.orderKey
  325. if(this.pinkid){
  326. url += '&pinkid='+this.pinkid
  327. }
  328. uni.navigateTo({
  329. url
  330. });
  331. }
  332. }
  333. };
  334. </script>
  335. <style lang="scss">
  336. page {
  337. background: $page-color-base;
  338. padding-bottom: 100rpx;
  339. }
  340. .navbar {
  341. display: flex;
  342. height: 80rpx;
  343. padding: 0 5px;
  344. background: #fff;
  345. box-shadow: 0 2rpx 10rpx rgba(0, 0, 0, 0.06);
  346. position: relative;
  347. z-index: 10;
  348. .nav-item {
  349. flex: 1;
  350. display: flex;
  351. justify-content: center;
  352. align-items: center;
  353. height: 100%;
  354. font-size: $font-lg + 4rpx;
  355. color: $font-color-dark;
  356. position: relative;
  357. &.current {
  358. color: $base-color;
  359. &:after {
  360. content: '';
  361. position: absolute;
  362. left: 50%;
  363. bottom: 0;
  364. transform: translateX(-50%);
  365. width: 140rpx;
  366. height: 0;
  367. border-bottom: 2px solid $base-color;
  368. }
  369. }
  370. }
  371. }
  372. .address-section {
  373. padding: 30rpx 0;
  374. background: #fff;
  375. position: relative;
  376. border-top: 1px solid $border-color-light;
  377. .order-content {
  378. min-height: 100rpx;
  379. display: flex;
  380. align-items: center;
  381. .addAddress {
  382. text-align: center;
  383. width: 100%;
  384. display: flex;
  385. justify-content: center;
  386. align-items: center;
  387. .iconaddition {
  388. font-size: 55rpx;
  389. line-height: 1;
  390. border-radius: 100rpx;
  391. margin-right: 20rpx;
  392. }
  393. }
  394. }
  395. .iconlocation {
  396. flex-shrink: 0;
  397. display: flex;
  398. align-items: center;
  399. justify-content: center;
  400. width: 90rpx;
  401. color: #888;
  402. font-size: 44rpx;
  403. }
  404. .cen {
  405. display: flex;
  406. flex-direction: column;
  407. flex: 1;
  408. font-size: 28rpx;
  409. color: $font-color-dark;
  410. }
  411. .name {
  412. font-size: 34rpx;
  413. margin-right: 24rpx;
  414. }
  415. .address {
  416. margin-top: 16rpx;
  417. margin-right: 20rpx;
  418. color: $font-color-light;
  419. }
  420. .icon-you {
  421. font-size: 32rpx;
  422. color: $font-color-light;
  423. margin-right: 30rpx;
  424. }
  425. .a-bg {
  426. position: absolute;
  427. left: 0;
  428. bottom: 0;
  429. display: block;
  430. width: 100%;
  431. height: 5rpx;
  432. }
  433. }
  434. .goods-section {
  435. margin-top: 16rpx;
  436. background: #fff;
  437. padding-bottom: 1px;
  438. .g-header {
  439. display: flex;
  440. align-items: center;
  441. height: 84rpx;
  442. padding: 0 30rpx;
  443. position: relative;
  444. }
  445. .logo {
  446. display: block;
  447. width: 50rpx;
  448. height: 50rpx;
  449. border-radius: 100px;
  450. }
  451. .name {
  452. font-size: 30rpx;
  453. color: $font-color-base;
  454. margin-left: 24rpx;
  455. }
  456. .g-item {
  457. display: flex;
  458. margin: 20rpx 30rpx;
  459. image {
  460. flex-shrink: 0;
  461. display: block;
  462. width: 140rpx;
  463. height: 140rpx;
  464. border-radius: 4rpx;
  465. }
  466. .right {
  467. flex: 1;
  468. padding-left: 24rpx;
  469. overflow: hidden;
  470. }
  471. .title {
  472. font-size: 30rpx;
  473. color: $font-color-dark;
  474. }
  475. .spec {
  476. font-size: 26rpx;
  477. color: $font-color-light;
  478. }
  479. .price-box {
  480. display: flex;
  481. align-items: center;
  482. font-size: 32rpx;
  483. color: $font-color-dark;
  484. padding-top: 10rpx;
  485. .price {
  486. margin-bottom: 4rpx;
  487. color: $color-red;
  488. }
  489. .number {
  490. font-size: 26rpx;
  491. color: $font-color-base;
  492. margin-left: 20rpx;
  493. }
  494. }
  495. .step-box {
  496. position: relative;
  497. }
  498. }
  499. }
  500. .yt-list {
  501. margin-top: 16rpx;
  502. background: #fff;
  503. }
  504. .yt-list-cell {
  505. display: flex;
  506. align-items: center;
  507. padding: 10rpx 30rpx 10rpx 40rpx;
  508. line-height: 70rpx;
  509. position: relative;
  510. &.cell-hover {
  511. background: #fafafa;
  512. }
  513. &.b-b:after {
  514. left: 30rpx;
  515. }
  516. .cell-icon {
  517. height: 32rpx;
  518. width: 32rpx;
  519. font-size: 22rpx;
  520. color: #fff;
  521. text-align: center;
  522. line-height: 32rpx;
  523. background: #f85e52;
  524. border-radius: 4rpx;
  525. margin-right: 12rpx;
  526. &.hb {
  527. background: #ffaa0e;
  528. }
  529. &.lpk {
  530. background: #3ab54a;
  531. }
  532. }
  533. .cell-more {
  534. align-self: center;
  535. font-size: 24rpx;
  536. color: $font-color-light;
  537. margin-left: 8rpx;
  538. margin-right: -10rpx;
  539. }
  540. .cell-tit {
  541. flex: 1;
  542. font-size: 26rpx;
  543. color: $font-color-light;
  544. margin-right: 10rpx;
  545. }
  546. .cell-tip {
  547. font-size: 26rpx;
  548. color: $font-color-dark;
  549. &.disabled {
  550. color: $font-color-light;
  551. }
  552. &.active {
  553. color: $base-color;
  554. }
  555. &.red {
  556. color: $base-color;
  557. }
  558. }
  559. &.desc-cell {
  560. .cell-tit {
  561. max-width: 90rpx;
  562. }
  563. }
  564. .desc {
  565. flex: 1;
  566. text-align: right;
  567. font-size: $font-base;
  568. color: $font-color-dark;
  569. }
  570. }
  571. /* 支付列表 */
  572. .pay-list {
  573. padding-left: 40rpx;
  574. margin-top: 16rpx;
  575. background: #fff;
  576. .pay-item {
  577. display: flex;
  578. align-items: center;
  579. padding-right: 20rpx;
  580. line-height: 1;
  581. height: 110rpx;
  582. position: relative;
  583. }
  584. .icon-weixinzhifu {
  585. width: 80rpx;
  586. font-size: 40rpx;
  587. color: #6bcc03;
  588. }
  589. .icon-alipay {
  590. width: 80rpx;
  591. font-size: 40rpx;
  592. color: #06b4fd;
  593. }
  594. .icon-xuanzhong2 {
  595. display: flex;
  596. align-items: center;
  597. justify-content: center;
  598. width: 60rpx;
  599. height: 60rpx;
  600. font-size: 40rpx;
  601. color: $base-color;
  602. }
  603. .tit {
  604. font-size: 32rpx;
  605. color: $font-color-dark;
  606. flex: 1;
  607. }
  608. }
  609. .footer {
  610. position: fixed;
  611. left: 0;
  612. bottom: 0;
  613. z-index: 995;
  614. display: flex;
  615. align-items: center;
  616. width: 100%;
  617. height: 90rpx;
  618. justify-content: space-between;
  619. font-size: 30rpx;
  620. background-color: #fff;
  621. z-index: 998;
  622. color: $font-color-base;
  623. box-shadow: 0 -1px 5px rgba(0, 0, 0, 0.1);
  624. .price-content {
  625. padding-left: 30rpx;
  626. }
  627. .price-tip {
  628. color: $font-color-base;
  629. margin-left: 8rpx;
  630. }
  631. .price {
  632. font-size: 36rpx;
  633. color: $font-color-base;
  634. }
  635. .submit {
  636. display: flex;
  637. align-items: center;
  638. justify-content: center;
  639. width: 280rpx;
  640. height: 100%;
  641. color: #fff;
  642. font-size: 32rpx;
  643. background-color: $base-color;
  644. &.submitNo {
  645. background-color: $font-color-disabled;
  646. }
  647. }
  648. }
  649. /* 优惠券面板 */
  650. .mask {
  651. display: flex;
  652. align-items: flex-end;
  653. position: fixed;
  654. left: 0;
  655. top: var(--window-top);
  656. bottom: 0;
  657. width: 100%;
  658. background: rgba(0, 0, 0, 0);
  659. z-index: 9995;
  660. transition: 0.3s;
  661. .mask-content {
  662. width: 100%;
  663. max-height: 70vh;
  664. background: #f3f3f3;
  665. transform: translateY(100%);
  666. transition: 0.3s;
  667. overflow-y: scroll;
  668. }
  669. &.none {
  670. display: none;
  671. }
  672. &.show {
  673. background: rgba(0, 0, 0, 0.4);
  674. .mask-content {
  675. transform: translateY(0);
  676. }
  677. }
  678. }
  679. /* 优惠券列表 */
  680. .coupon-item {
  681. display: flex;
  682. flex-direction: column;
  683. margin: 20rpx 24rpx;
  684. background: #fff;
  685. .con {
  686. display: flex;
  687. align-items: center;
  688. position: relative;
  689. height: 120rpx;
  690. padding: 0 30rpx;
  691. &:after {
  692. position: absolute;
  693. left: 0;
  694. bottom: 0;
  695. content: '';
  696. width: 100%;
  697. height: 0;
  698. border-bottom: 1px dashed #f3f3f3;
  699. transform: scaleY(50%);
  700. }
  701. }
  702. .left {
  703. display: flex;
  704. flex-direction: column;
  705. justify-content: center;
  706. flex: 1;
  707. overflow: hidden;
  708. height: 100rpx;
  709. }
  710. .title {
  711. font-size: 32rpx;
  712. color: $font-color-dark;
  713. margin-bottom: 10rpx;
  714. }
  715. .time {
  716. font-size: 24rpx;
  717. color: $font-color-light;
  718. }
  719. .right {
  720. display: flex;
  721. flex-direction: column;
  722. justify-content: center;
  723. align-items: center;
  724. font-size: 26rpx;
  725. color: $font-color-base;
  726. height: 100rpx;
  727. }
  728. .price {
  729. font-size: 44rpx;
  730. color: $base-color;
  731. &:before {
  732. content: '¥';
  733. font-size: 34rpx;
  734. }
  735. }
  736. .tips {
  737. font-size: 24rpx;
  738. color: $font-color-light;
  739. line-height: 60rpx;
  740. padding-left: 30rpx;
  741. }
  742. .circle {
  743. position: absolute;
  744. left: -6rpx;
  745. bottom: -10rpx;
  746. z-index: 10;
  747. width: 20rpx;
  748. height: 20rpx;
  749. background: #f3f3f3;
  750. border-radius: 100px;
  751. &.r {
  752. left: auto;
  753. right: -6rpx;
  754. }
  755. }
  756. }
  757. </style>