createOrder.vue 25 KB

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