createOrder.vue 23 KB

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