createOrder.vue 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907
  1. <template>
  2. <view>
  3. <!-- 地址 -->
  4. <navigator url="/pages/address/address?source=1" class="address-section">
  5. <view class="order-content">
  6. <text class="yticon icon-shouhuodizhi"></text>
  7. <view class="cen" v-if="addressData && addressData.name">
  8. <view class="top">
  9. <text class="name">{{addressData.name}}</text>
  10. <text class="mobile">{{addressData.mobile}}</text>
  11. </view>
  12. <text class="address">{{addressData.province.name+addressData.city.name+addressData.area.name+' '+addressData.address}}</text>
  13. </view>
  14. <view class="cen" v-else>请选择收货地址</view>
  15. <text class="yticon icon-you"></text>
  16. </view>
  17. <image class="a-bg" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAu4AAAAFCAYAAAAaAWmiAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6Rjk3RjkzMjM2NzMxMTFFOUI4RkU4OEZGMDcxQzgzOEYiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6Rjk3RjkzMjQ2NzMxMTFFOUI4RkU4OEZGMDcxQzgzOEYiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpGOTdGOTMyMTY3MzExMUU5QjhGRTg4RkYwNzFDODM4RiIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpGOTdGOTMyMjY3MzExMUU5QjhGRTg4RkYwNzFDODM4RiIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PrEOZlQAAAiuSURBVHjazJp7bFvV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"></image>
  18. </navigator>
  19. <view class="progress" v-if="progress.number">
  20. <!-- <ProgressBar
  21. class="ProgressBar"
  22. :Sold="progress.sold"
  23. :widthUpx="250"
  24. :Width="percentage(progress.number, progress.sold)"
  25. Type="candy"
  26. :Vice="true"></ProgressBar> -->
  27. </view>
  28. <view class="goods-section">
  29. <!-- 第二版本加商户 -->
  30. <!-- <view class="g-header b-b">
  31. <image class="logo" src="http://duoduo.qibukj.cn/./Upload/Images/20190321/201903211727515.png"></image>
  32. <text class="name">西城小店铺</text>
  33. </view> -->
  34. <!-- 商品列表 -->
  35. <view class="g-item" v-for="(item, index) in product" :key="item.id">
  36. <image :src="item.image" mode="aspectFill"></image>
  37. <view class="right">
  38. <text class="title clamp">{{item.title}}</text>
  39. <view class="spec">{{item.spec ? "规格:" + item.spec : ""}} {{" 库存:"+item.stock}} {{progress.number ? "(秒:"+progress.number+"件,剩:"+(progress.number - progress.sold)+"件)": ""}}</view>
  40. <view class="price-box">
  41. <view class="price">¥{{item.sales_price}} <del class="market_price">¥{{item.market_price}}</del></view>
  42. <!-- <text class="number">x 1</text> -->
  43. <uni-number-box v-if="progress.number" class="step" :min="1" :max="progress.number - progress.sold" :disabled="item.number>=(progress.number - progress.sold)" :value="item.number" :isMax="(progress.number - progress.sold) <= item.number?true:false"
  44. :isMin="item.number===1" :index="index" @eventChange="numberChange"></uni-number-box>
  45. <uni-number-box v-else class="step" :min="1" :max="item.stock" :disabled="item.number>=item.stock" :value="item.number" :isMax="item.stock <= item.number?true:false"
  46. :isMin="item.number===1" :index="index" @eventChange="numberChange"></uni-number-box>
  47. </view>
  48. </view>
  49. </view>
  50. </view>
  51. <!-- 优惠明细 -->
  52. <view class="yt-list" v-if="couponList && couponList.length">
  53. <view class="yt-list-cell b-b" @click="toggleMask('show')">
  54. <view class="cell-icon">
  55. </view>
  56. <text class="cell-tit clamp">优惠券</text>
  57. <text class="cell-tip active">
  58. {{useCouponIndex !== -1 ? couponList[useCouponIndex].title : '选择优惠券'}}
  59. </text>
  60. <text class="cell-more wanjia wanjia-gengduo-d"></text>
  61. </view>
  62. <!-- 第二版本加多商户 -->
  63. <!-- <view class="yt-list-cell b-b">
  64. <view class="cell-icon hb">
  65. </view>
  66. <text class="cell-tit clamp">商家促销</text>
  67. <text class="cell-tip disabled">暂无可用优惠</text>
  68. </view> -->
  69. </view>
  70. <!-- 金额明细 -->
  71. <view class="yt-list">
  72. <view class="yt-list-cell b-b">
  73. <view class="cell-tit clamp">总共合计</view>
  74. <view class="cell-tip">¥{{price}}</view>
  75. </view>
  76. <label class="yt-list-cell b-b" @click="changeDeductionScore(maxDeductionScore)" for="maxDeductionScoreCheckbox" v-if="maxDeductionScore < userInfo['score']">
  77. <view class="cell-tit clamp"><checkbox id="maxDeductionScoreCheckbox" value="maxDeductionScore" ></checkbox>使用积分抵扣</view>
  78. <view class="cell-tip red">{{maxDeductionScore}}元</view>
  79. </label>
  80. <label class="yt-list-cell b-b" for="userInfoScore" v-else>
  81. <view class="cell-tit clamp"><checkbox @click="changeDeductionScore(userInfo['score'])" id="userInfoScore" value="userInfo['score']" ></checkbox>使用积分抵扣</view>
  82. <view class="cell-tip red">{{userInfo['score']}}元</view>
  83. </label>
  84. <view class="yt-list-cell b-b" v-if="couponList && couponList.length">
  85. <view class="cell-tit clamp">优惠金额</view>
  86. <view class="cell-tip red">-¥{{coupon_price}}</view>
  87. </view>
  88. <view class="yt-list-cell b-b">
  89. <view class="cell-tit clamp">配送方式
  90. <!-- <text style="color:red" @click="deliveryTemplate">(查看详情)</text> -->
  91. </view>
  92. <view class="cell-tip" v-if="deliveryList && deliveryList.length > 0">
  93. <picker @change="deliveryChange" range-key="name" :value="deliveryIndex" :range="deliveryList">
  94. <view class="uni-input">{{deliveryList[deliveryIndex].name}}</view>
  95. </picker>
  96. </view>
  97. </view>
  98. <view class="yt-list-cell b-b">
  99. <view class="cell-tit clamp">运费</view>
  100. <view class="cell-tip">¥{{deliveryPrice}}</view>
  101. </view>
  102. <view class="yt-list-cell desc-cell">
  103. <view class="cell-tit clamp">备注</view>
  104. <input class="desc" type="text" v-model="remark" placeholder="请填写备注信息" placeholder-class="placeholder" />
  105. </view>
  106. </view>
  107. <!-- 底部 -->
  108. <view class="footer">
  109. <view class="price-content">
  110. <text>实付款</text>
  111. <text class="price-tip">¥</text>
  112. <text class="price">{{total - deductionScore}}</text>
  113. </view>
  114. <text class="submit" @click="submit">提交订单</text>
  115. </view>
  116. <!-- 优惠券面板 -->
  117. <view class="mask" :class="maskState===0 ? 'none' : maskState===1 ? 'show' : ''" @click="toggleMask">
  118. <view class="mask-content" @click.stop.prevent="stopPrevent">
  119. <!-- 优惠券页面,仿mt -->
  120. <view class="coupon-item" v-for="(item,index) in couponList" :key="index" :class="useCouponIndex === index ? 'selectCoupon' : ''">
  121. <view class="con" v-on:click="useCoupon(index)">
  122. <view class="left">
  123. <text class="title">{{item.title}}</text>
  124. <text class="time">有效期至{{item.endtime_text}}</text>
  125. </view>
  126. <view class="right">
  127. <text class="price">{{item.value}}</text>
  128. <text>满{{item.least}}可用</text>
  129. </view>
  130. <view class="circle l"></view>
  131. <view class="circle r"></view>
  132. </view>
  133. <text class="tips">限一张使用</text>
  134. </view>
  135. </view>
  136. <button class="btn" @click="toggleMask">收起</button>
  137. </view>
  138. </view>
  139. </template>
  140. <script>
  141. import uniNumberBox from '@/components/uni-number-box.vue';
  142. export default {
  143. components: {
  144. uniNumberBox
  145. },
  146. data() {
  147. return {
  148. maskState: 0, //优惠券面板显示状态
  149. remark: '', //备注
  150. payType: 1, //1微信 2支付宝
  151. couponList: [],
  152. useCouponIndex: -1,
  153. addressData: {},
  154. product: [],
  155. userInfo: {
  156. score: 0
  157. },
  158. maxDeductionScore: 0,
  159. price: 0.00, //商品金额
  160. coupon_price: 0.00, //优惠券金额
  161. total: 0.00, //实付金额
  162. deliveryList: [],
  163. deliveryIndex: 0,
  164. deliveryPrice: 0.00,
  165. cart: [], // 购物车id
  166. flash_id: 0, // 秒杀id
  167. progress:{},
  168. submitLock:false ,// 提交按钮锁
  169. deductionScore: 0
  170. }
  171. },
  172. onLoad(options) {
  173. if (options.hasOwnProperty('flash_id')) {
  174. this.flash_id = options.flash_id;
  175. }
  176. if (options.hasOwnProperty('cart')) {
  177. this.cart = options.cart;
  178. // 从购物车进入
  179. this.getOrderCreate({
  180. cart: options.cart
  181. });
  182. } else {
  183. // 从商品进入
  184. this.getOrderCreate({
  185. id: options.id,
  186. spec: options.spec,
  187. flash_id: this.flash_id
  188. });
  189. }
  190. },
  191. onShow() {
  192. if (this.addressData.hasOwnProperty('city_id')) {
  193. // 检查当前地址是否存在于运费模板中
  194. this.getDelivery();
  195. }
  196. },
  197. methods: {
  198. // 计算百分比
  199. percentage(number, sold) {
  200. if (!sold) {
  201. return 0;
  202. }
  203. return parseInt(sold / number * 100);
  204. },
  205. // 获取运费模板
  206. async getDelivery() {
  207. let delivery = await this.$api.request('/order/getDelivery?city_id=' + this.addressData.city_id);
  208. if (delivery) {
  209. this.deliveryList = delivery;
  210. this.deliveryIndex = 0;
  211. this.calcTotal();
  212. }
  213. },
  214. // 选择运费模板
  215. deliveryChange(e) {
  216. this.deliveryIndex = e.detail.value;
  217. this.calcTotal();
  218. },
  219. // 使用优惠券
  220. useCoupon(index) {
  221. if (this.useCouponIndex !== index) {
  222. this.useCouponIndex = index;
  223. //this.coupon_price = this.couponList[index].value;
  224. } else {
  225. this.useCouponIndex = -1;
  226. // this.coupon_price = 0;
  227. }
  228. this.calcTotal();
  229. },
  230. //获取创建订单信息
  231. async getOrderCreate(param) {
  232. let that = this;
  233. let apiUrl = !param.flash_id || param.flash_id == 0 ? '/order/create' : '/flash/createOrder';
  234. let data = await this.$api.request(apiUrl, 'POST', param);
  235. let maxDeductionScore = 0;
  236. if (data) {
  237. this.addressData = data.address;
  238. const product = this.product = data.product;
  239. this.couponList = data.coupon;
  240. this.deliveryList = data.delivery;
  241. this.userInfo = data.userInfo;
  242. this.calcTotal();
  243. for(const i in product){
  244. maxDeductionScore += product[i]['maxDeductionScore'];
  245. }
  246. this.maxDeductionScore = maxDeductionScore;
  247. if (data.flash) {
  248. this.progress = data.flash;
  249. }
  250. } else {
  251. setTimeout(function() {
  252. that.$api.prePage().getDetail(param.id, param.flash_id);
  253. uni.navigateBack();
  254. }, 3000)
  255. }
  256. },
  257. //显示优惠券面板
  258. toggleMask(type) {
  259. let timer = type === 'show' ? 10 : 300;
  260. let state = type === 'show' ? 1 : 0;
  261. this.maskState = 2;
  262. setTimeout(() => {
  263. this.maskState = state;
  264. }, timer)
  265. },
  266. changePayType(type) {
  267. this.payType = type;
  268. },
  269. async submit() {
  270. // 如果没有地址则提示先加地址
  271. if (!this.addressData || !this.addressData.hasOwnProperty('city_id')) {
  272. this.$api.msg('请选择收货地址');
  273. return;
  274. }
  275. this.$api.msg('提交中...', 20000);
  276. let delivery_id = 0;
  277. if (this.deliveryList && this.deliveryList[this.deliveryIndex] && this.deliveryList[this.deliveryIndex].id) {
  278. delivery_id = this.deliveryList[this.deliveryIndex].id;
  279. }
  280. let coupon_id = 0;
  281. if (this.couponList && this.couponList[this.useCouponIndex] && this.couponList[this.useCouponIndex].id) {
  282. coupon_id = this.couponList[this.useCouponIndex].id;
  283. }
  284. let data = {
  285. city_id: this.addressData.city_id,
  286. address_id: this.addressData.id,
  287. delivery_id: delivery_id,
  288. coupon_id: coupon_id,
  289. remark: this.remark,
  290. product_id: [],
  291. spec: [],
  292. number: [],
  293. cart: this.cart,
  294. flash_id: this.flash_id,
  295. deductionScore: this.deductionScore
  296. };
  297. this.product.forEach((item, index) => {
  298. data.product_id.push(item.id);
  299. data.spec.push(item.spec.replace(/,/g, '|'));
  300. data.number.push(item.number);
  301. });
  302. if (this.submitLock) {
  303. return;
  304. }
  305. this.submitLock = true; // 提交锁
  306. let apiUrl = this.flash_id == 0 ? '/order/submit' : '/flash/submitOrder';
  307. let result = await this.$api.request(apiUrl, 'POST', data);
  308. if (result) {
  309. this.submitLock = false; // 解除锁
  310. this.$api.msg('已提交', 2000);
  311. uni.redirectTo({
  312. url: `/pages/money/pay?order_id=${result.order_id}&total=${this.total-this.deductionScore}&out_trade_no=${result.out_trade_no}`
  313. });
  314. }
  315. this.submitLock = false; // 解除锁
  316. },
  317. stopPrevent() {},
  318. //数量
  319. async numberChange(data) {
  320. let oldNumber = this.product[data.index].number;
  321. let newNumber = data.number;
  322. this.product[data.index].number = newNumber;
  323. this.calcTotal();
  324. //判断当前库存
  325. let stock = this.product[data.index].stock;
  326. if (newNumber > this.product[data.index].stock) {
  327. this.product[data.index].number = stock;
  328. }
  329. },
  330. // 计算价格
  331. calcTotal() {
  332. let price = 0;
  333. let number = 0; // 产品数量
  334. let product = this.product;
  335. product.forEach(item => {
  336. price = price + parseFloat(item.sales_price) * item.number;
  337. number = number + item.number;
  338. });
  339. this.price = price.toFixed(2);
  340. let total = price;
  341. // 检查当前优惠券是否满足使用条件
  342. this.coupon_price = 0.00;
  343. if (this.useCouponIndex != -1 && this.couponList && this.couponList[this.useCouponIndex]) {
  344. this.coupon_price = this.couponList[this.useCouponIndex].value
  345. if (this.price >= this.couponList[this.useCouponIndex].least) {
  346. total = total - this.coupon_price;
  347. } else {
  348. this.$api.msg('选中的优惠券不满足使用条件', 2000);
  349. this.useCouponIndex = -1; //取消选中的优惠券
  350. this.coupon_price = 0; //设置优惠金额为0
  351. total = total - this.coupon_price;
  352. }
  353. }
  354. // 计算当前运费模板
  355. // id: 29 运费模板id
  356. // name: "购买2件以上包邮" 标题
  357. // type: "quantity" // 续重类型
  358. // min: 2 // 至少购买量
  359. // first: 1 // 首件数量
  360. // first_fee: "0.00" // 首单价钱
  361. // additional: 1 // 续件数量
  362. // additional_fee: "0" // 续件价钱
  363. let delivery = this.deliveryList[this.deliveryIndex];
  364. if (delivery) {
  365. let deliveryPrice = 0;
  366. if (delivery.hasOwnProperty('id')) {
  367. if (delivery.min > number) {
  368. this.$api.msg('必须至少购买' + delivery.min + '件商品才能使用此配送方式', 6000)
  369. }
  370. // 如何为0就赋值1,不然下面的循环会死循环
  371. delivery.first = delivery.first == 0 ? 1 : delivery.first;
  372. delivery.additional = delivery.additional == 0 ? 1 : delivery.additional;
  373. for (let i = 0; i < number;) {
  374. if (i === 0) {
  375. deliveryPrice = deliveryPrice + parseInt(delivery.first_fee);
  376. i = i + parseInt(delivery.first);
  377. } else {
  378. deliveryPrice = deliveryPrice + parseInt(delivery.additional_fee);
  379. i = i + parseInt(delivery.additional);
  380. }
  381. }
  382. }
  383. this.deliveryPrice = deliveryPrice.toFixed(2);
  384. total = total + deliveryPrice;
  385. }
  386. this.total = total.toFixed(2);
  387. },
  388. // 查看运费模板
  389. deliveryTemplate() {
  390. this.$api.navTo('/pages/order/delivery');
  391. },
  392. changeDeductionScore(num) {
  393. if(this.deductionScore == 0) {
  394. this.deductionScore = num;
  395. } else {
  396. this.deductionScore = 0;
  397. }
  398. }
  399. }
  400. }
  401. </script>
  402. <style lang="scss">
  403. page {
  404. background: $page-color-base;
  405. padding-bottom: 100upx;
  406. }
  407. .uni-numbox {
  408. left: initial !important;
  409. right: 0 !important;
  410. }
  411. .address-section {
  412. padding: 30upx 0;
  413. background: #fff;
  414. position: relative;
  415. .order-content {
  416. display: flex;
  417. align-items: center;
  418. }
  419. .icon-shouhuodizhi {
  420. flex-shrink: 0;
  421. display: flex;
  422. align-items: center;
  423. justify-content: center;
  424. width: 90upx;
  425. color: #888;
  426. font-size: 44upx;
  427. }
  428. .cen {
  429. display: flex;
  430. flex-direction: column;
  431. flex: 1;
  432. font-size: 28upx;
  433. color: $font-color-dark;
  434. }
  435. .name {
  436. font-size: 34upx;
  437. margin-right: 24upx;
  438. }
  439. .address {
  440. margin-top: 16upx;
  441. margin-right: 20upx;
  442. color: $font-color-light;
  443. }
  444. .icon-you {
  445. font-size: 32upx;
  446. color: $font-color-light;
  447. margin-right: 30upx;
  448. }
  449. .a-bg {
  450. position: absolute;
  451. left: 0;
  452. bottom: 0;
  453. display: block;
  454. width: 100%;
  455. height: 5upx;
  456. }
  457. }
  458. .goods-section {
  459. margin-top: 16upx;
  460. background: #fff;
  461. padding-bottom: 1px;
  462. .g-header {
  463. display: flex;
  464. align-items: center;
  465. height: 84upx;
  466. padding: 0 30upx;
  467. position: relative;
  468. }
  469. .logo {
  470. display: block;
  471. width: 50upx;
  472. height: 50upx;
  473. border-radius: 100px;
  474. }
  475. .name {
  476. font-size: 30upx;
  477. color: $font-color-base;
  478. margin-left: 24upx;
  479. }
  480. .g-item {
  481. display: flex;
  482. margin: 20upx 30upx;
  483. image {
  484. flex-shrink: 0;
  485. display: block;
  486. width: 160upx;
  487. height: 160upx;
  488. border-radius: 4upx;
  489. }
  490. .right {
  491. height: 160upx;
  492. flex: 1;
  493. padding-left: 24upx;
  494. overflow: hidden;
  495. position: relative;
  496. }
  497. .title {
  498. font-size: 30upx;
  499. color: $font-color-dark;
  500. }
  501. .spec {
  502. font-size: 26upx;
  503. color: $font-color-light;
  504. }
  505. .price-box {
  506. display: flex;
  507. align-items: center;
  508. font-size: 32upx;
  509. color: $font-color-dark;
  510. padding-top: 5px;
  511. .price {
  512. margin-bottom: 4upx;
  513. color: red;
  514. }
  515. .market_price {
  516. font-size: 26upx;
  517. margin-left: 20upx;
  518. color: #b2b2b2;
  519. text-decoration: line-through;
  520. margin-top: -8rpx;
  521. }
  522. .number {
  523. font-size: 26upx;
  524. color: $font-color-base;
  525. margin-left: 20upx;
  526. }
  527. .step {
  528. left: unset;
  529. right: 10upx;
  530. }
  531. }
  532. .step-box {
  533. position: relative;
  534. }
  535. }
  536. }
  537. .yt-list {
  538. margin-top: 16upx;
  539. background: #fff;
  540. }
  541. .yt-list-cell {
  542. display: flex;
  543. align-items: center;
  544. padding: 10upx 30upx 10upx 40upx;
  545. line-height: 70upx;
  546. position: relative;
  547. &.cell-hover {
  548. background: #fafafa;
  549. }
  550. &.b-b:after {
  551. left: 30upx;
  552. }
  553. .cell-icon {
  554. height: 32upx;
  555. width: 32upx;
  556. font-size: 22upx;
  557. color: #fff;
  558. text-align: center;
  559. line-height: 32upx;
  560. background: #f85e52;
  561. border-radius: 4upx;
  562. margin-right: 12upx;
  563. &.hb {
  564. background: #ffaa0e;
  565. }
  566. &.lpk {
  567. background: #3ab54a;
  568. }
  569. }
  570. .cell-more {
  571. align-self: center;
  572. font-size: 24upx;
  573. color: $font-color-light;
  574. margin-left: 8upx;
  575. margin-right: -10upx;
  576. }
  577. .cell-tit {
  578. flex: 1;
  579. font-size: 26upx;
  580. color: $font-color-light;
  581. margin-right: 10upx;
  582. }
  583. .cell-tip {
  584. font-size: 26upx;
  585. color: $font-color-dark;
  586. &.disabled {
  587. color: $font-color-light;
  588. }
  589. &.active {
  590. color: $base-color;
  591. }
  592. &.red {
  593. color: $base-color;
  594. }
  595. picker{
  596. max-width: 500rpx;
  597. line-height: 50rpx;
  598. }
  599. }
  600. &.desc-cell {
  601. .cell-tit {
  602. max-width: 90upx;
  603. }
  604. }
  605. .desc {
  606. flex: 1;
  607. font-size: $font-base;
  608. color: $font-color-dark;
  609. }
  610. }
  611. /* 支付列表 */
  612. .pay-list {
  613. padding-left: 40upx;
  614. margin-top: 16upx;
  615. background: #fff;
  616. .pay-item {
  617. display: flex;
  618. align-items: center;
  619. padding-right: 20upx;
  620. line-height: 1;
  621. height: 110upx;
  622. position: relative;
  623. }
  624. .icon-weixinzhifu {
  625. width: 80upx;
  626. font-size: 40upx;
  627. color: #6BCC03;
  628. }
  629. .icon-alipay {
  630. width: 80upx;
  631. font-size: 40upx;
  632. color: #06B4FD;
  633. }
  634. .icon-xuanzhong2 {
  635. display: flex;
  636. align-items: center;
  637. justify-content: center;
  638. width: 60upx;
  639. height: 60upx;
  640. font-size: 40upx;
  641. color: $base-color;
  642. }
  643. .tit {
  644. font-size: 32upx;
  645. color: $font-color-dark;
  646. flex: 1;
  647. }
  648. }
  649. .footer {
  650. position: fixed;
  651. left: 0;
  652. bottom: 0;
  653. z-index: 995;
  654. display: flex;
  655. align-items: center;
  656. width: 100%;
  657. height: 90upx;
  658. justify-content: space-between;
  659. font-size: 30upx;
  660. background-color: #fff;
  661. z-index: 99;
  662. color: $font-color-base;
  663. box-shadow: 0 -1px 5px rgba(0, 0, 0, .1);
  664. .price-content {
  665. padding-left: 30upx;
  666. }
  667. .price-tip {
  668. color: $base-color;
  669. margin-left: 8upx;
  670. }
  671. .price {
  672. font-size: 36upx;
  673. color: $base-color;
  674. }
  675. .submit {
  676. display: flex;
  677. align-items: center;
  678. justify-content: center;
  679. width: 280upx;
  680. height: 100%;
  681. color: #fff;
  682. font-size: 32upx;
  683. background-color: $base-color;
  684. }
  685. }
  686. /* 优惠券面板 */
  687. .mask {
  688. display: flex;
  689. align-items: flex-end;
  690. position: fixed;
  691. left: 0;
  692. top: var(--window-top);
  693. bottom: 0;
  694. width: 100%;
  695. background: rgba(0, 0, 0, 0);
  696. z-index: 100;
  697. transition: .3s;
  698. .mask-content {
  699. width: 100%;
  700. min-height: 30vh;
  701. max-height: 70vh;
  702. background: #f3f3f3;
  703. transform: translateY(100%);
  704. transition: .3s;
  705. overflow-y: scroll;
  706. padding-bottom: 100rpx;
  707. }
  708. .btn {
  709. background: #fa436a;
  710. position: absolute;
  711. bottom: 0;
  712. width: 700rpx;
  713. margin: 20rpx 25rpx;
  714. color: #fff;
  715. border-radius: 40rpx;
  716. }
  717. &.none {
  718. display: none;
  719. }
  720. &.show {
  721. background: rgba(0, 0, 0, .4);
  722. .mask-content {
  723. transform: translateY(0);
  724. }
  725. }
  726. }
  727. /* 选中的优惠券 */
  728. .selectCoupon {
  729. border: 1upx solid red;
  730. }
  731. /* 优惠券列表 */
  732. .coupon-item {
  733. display: flex;
  734. flex-direction: column;
  735. margin: 20upx 24upx;
  736. background: #fff;
  737. .con {
  738. display: flex;
  739. align-items: center;
  740. position: relative;
  741. height: 120upx;
  742. padding: 0 30upx;
  743. &:after {
  744. position: absolute;
  745. left: 0;
  746. bottom: 0;
  747. content: '';
  748. width: 100%;
  749. height: 0;
  750. border-bottom: 1px dashed #f3f3f3;
  751. transform: scaleY(50%);
  752. }
  753. }
  754. .left {
  755. display: flex;
  756. flex-direction: column;
  757. justify-content: center;
  758. flex: 1;
  759. overflow: hidden;
  760. height: 100upx;
  761. }
  762. .title {
  763. font-size: 32upx;
  764. color: $font-color-dark;
  765. margin-bottom: 10upx;
  766. }
  767. .time {
  768. font-size: 24upx;
  769. color: $font-color-light;
  770. }
  771. .right {
  772. display: flex;
  773. flex-direction: column;
  774. justify-content: center;
  775. align-items: center;
  776. font-size: 26upx;
  777. color: $font-color-base;
  778. height: 100upx;
  779. }
  780. .price {
  781. font-size: 44upx;
  782. color: $base-color;
  783. &:before {
  784. content: '¥';
  785. font-size: 34upx;
  786. }
  787. }
  788. .tips {
  789. font-size: 24upx;
  790. color: $font-color-light;
  791. line-height: 60upx;
  792. padding-left: 30upx;
  793. }
  794. .circle {
  795. position: absolute;
  796. left: -6upx;
  797. bottom: -10upx;
  798. z-index: 10;
  799. width: 20upx;
  800. height: 20upx;
  801. background: #f3f3f3;
  802. border-radius: 100px;
  803. &.r {
  804. left: auto;
  805. right: -6upx;
  806. }
  807. }
  808. }
  809. </style>