createOrder.vue 23 KB

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