createOrder.vue 24 KB

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