createOrder.vue 22 KB

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