createOrder.vue 25 KB

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