createOrder.vue 25 KB

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