createOrder.vue 24 KB

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