createOrder.vue 24 KB

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