createOrder.vue 22 KB

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