order_addcart.vue 37 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369
  1. <template>
  2. <view :style="colorStyle">
  3. <view class='shoppingCart copy-data' v-if="canShow">
  4. <view class='labelNav acea-row row-around row-middle'>
  5. <view class='item'><text class='iconfont icon-xuanzhong'></text>{{$t(`100%正品保证`)}}</view>
  6. <view class='item'><text class='iconfont icon-xuanzhong'></text>{{$t(`所有商品精挑细选`)}}</view>
  7. <view class='item'><text class='iconfont icon-xuanzhong'></text>{{$t(`售后无忧`)}}</view>
  8. </view>
  9. <view class='nav acea-row row-between-wrapper'>
  10. <view>{{$t(`购物数量`)}} <text class='num font-num'>{{cartCount}}</text></view>
  11. <view v-if="cartList.valid.length > 0 || cartList.invalid.length > 0"
  12. class='administrate acea-row row-center-wrapper' @click='manage'>{{ footerswitch ? $t(`管理`) : $t(`取消`)}}
  13. </view>
  14. </view>
  15. <view v-if="(cartList.valid.length > 0 || cartList.invalid.length > 0) && canShow ">
  16. <view class='list'>
  17. <checkbox-group @change="checkboxChange">
  18. <block v-for="(item,index) in cartList.valid" :key="index">
  19. <view class='item acea-row row-between-wrapper'>
  20. <!-- #ifndef MP -->
  21. <checkbox :value="(item.id).toString()" :checked="item.checked"
  22. :disabled="!item.attrStatus && footerswitch" />
  23. <!-- <checkbox :value="(item.id).toString()" :checked="item.checked" :disabled="item.attrStatus?false:true" /> -->
  24. <!-- #endif -->
  25. <!-- #ifdef MP -->
  26. <checkbox :value="item.id" :checked="item.checked"
  27. :disabled="!item.attrStatus && footerswitch" />
  28. <!-- #endif -->
  29. <navigator :url='"/pages/goods_details/index?id="+item.product_id' hover-class='none'
  30. class='picTxt acea-row row-between-wrapper'>
  31. <view class='pictrue'>
  32. <image v-if="item.productInfo.attrInfo" :src='item.productInfo.attrInfo.image'>
  33. </image>
  34. <image v-else :src='item.productInfo.image'></image>
  35. </view>
  36. <view class='text'>
  37. <view class='line1' :class="item.attrStatus?'':'reColor'">
  38. {{item.productInfo.store_name}}
  39. </view>
  40. <view class='infor line1' v-if="item.productInfo.attrInfo">
  41. {{$t(`属性`)}}:{{item.productInfo.attrInfo.suk}}</view>
  42. <view class='money' v-if="item.attrStatus">{{$t(`¥`)}}{{item.truePrice}}</view>
  43. <view class="reElection acea-row row-between-wrapper" v-else>
  44. <view class="title">{{$t(`请重新选择商品规格`)}}</view>
  45. <view class="reBnt cart-color acea-row row-center-wrapper"
  46. @click.stop="reElection(item)">{{$t(`重选`)}}</view>
  47. </view>
  48. </view>
  49. <view class='carnum acea-row row-center-wrapper' v-if="item.attrStatus">
  50. <view class="reduce" :class="item.numSub ? 'on' : ''"
  51. @click.stop='subCart(index)'>-</view>
  52. <!-- <view class='num'>{{item.cart_num}}</view> -->
  53. <view class="num">
  54. <input type="number" v-model="item.cart_num" @click.stop
  55. @input="iptCartNum(index)" @blur="blurInput(index)" />
  56. </view>
  57. <view class="plus" :class="item.numAdd ? 'on' : ''"
  58. @click.stop='addCart(index)'>+</view>
  59. </view>
  60. </navigator>
  61. </view>
  62. </block>
  63. </checkbox-group>
  64. </view>
  65. <view class='invalidGoods' v-if="cartList.invalid.length > 0">
  66. <view class='goodsNav acea-row row-between-wrapper'>
  67. <view @click='goodsOpen'><text class='iconfont'
  68. :class='goodsHidden==true?"icon-xiangxia":"icon-xiangshang"'></text>{{$t(`失效商品`)}}</view>
  69. <view class='del' @click='unsetCart'><text class='iconfont icon-shanchu1'></text>{{$t(`清空`)}}</view>
  70. </view>
  71. <view class='goodsList' :hidden='goodsHidden'>
  72. <block v-for="(item,index) in cartList.invalid" :key='index'>
  73. <view class='item acea-row row-between-wrapper'>
  74. <view class='invalid'>{{$t(`失效`)}}</view>
  75. <view class='pictrue'>
  76. <image v-if="item.productInfo.attrInfo" :src='item.productInfo.attrInfo.image'>
  77. </image>
  78. <image v-else :src='item.productInfo.image'></image>
  79. </view>
  80. <view class='text acea-row row-column-between'>
  81. <view class='line1 name'>{{item.productInfo.store_name}}</view>
  82. <view class='infor line1' v-if="item.productInfo.attrInfo">
  83. {{$t(`属性`)}}:{{item.productInfo.attrInfo.suk}}</view>
  84. <view class='acea-row row-between-wrapper'>
  85. <!-- <view>¥{{item.truePrice}}</view> -->
  86. <view class='end'>{{$t(`该商品已失效`)}}</view>
  87. </view>
  88. </view>
  89. </view>
  90. </block>
  91. </view>
  92. </view>
  93. <!-- <view class='loadingicon acea-row row-center-wrapper' v-if="cartList.valid.length&&!loadend">
  94. <text class='loading iconfont icon-jiazai' :hidden='loading==false'></text>{{loadTitle}}
  95. </view> -->
  96. <view class='loadingicon acea-row row-center-wrapper' v-if="cartList.invalid.length&&loadend">
  97. <text class='loading iconfont icon-jiazai'
  98. :hidden='loadingInvalid==false'></text>{{loadTitleInvalid}}
  99. </view>
  100. </view>
  101. <view class='noCart' v-if="cartList.valid.length == 0 && cartList.invalid.length == 0 && canShow">
  102. <view class='emptyBox'>
  103. <image :src="imgHost + '/statics/images/no-thing.png'"></image>
  104. <view class="tips">{{$t(`全选`)}}</view>
  105. </view>
  106. <recommend :hostProduct='hostProduct'></recommend>
  107. </view>
  108. <view style='height:120rpx;color: #F5F5F5;'></view>
  109. <view class='footer acea-row row-between-wrapper' v-if="cartList.valid.length > 0 && canShow"
  110. :class="is_diy && is_diy_set? 'on' : ''">
  111. <view>
  112. <checkbox-group @change="checkboxAllChange">
  113. <checkbox value="all" :checked="!!isAllSelect" />
  114. <text class='checkAll'>{{$t(`全选`)}}({{selectValue.length}})</text>
  115. </checkbox-group>
  116. </view>
  117. <view class='money acea-row row-middle' v-if="footerswitch==true">
  118. <text class='font-color'>{{$t(`¥`)}}{{selectCountPrice}}</text>
  119. <form @submit="subOrder">
  120. <button class='placeOrder bg-color' formType="submit">{{$t(`立即下单`)}}</button>
  121. </form>
  122. </view>
  123. <view class='button acea-row row-middle' v-else>
  124. <form @submit="subCollect">
  125. <button class='bnt cart-color' formType="submit">{{$t(`收藏`)}}</button>
  126. </form>
  127. <form @submit="subDel">
  128. <button class='bnt' formType="submit">{{$t(`删除`)}}</button>
  129. </form>
  130. </view>
  131. </view>
  132. </view>
  133. <productWindow :attr="attr" :isShow='1' :iSplus='1' :iScart='1' @myevent="onMyEvent" @ChangeAttr="ChangeAttr"
  134. @ChangeCartNum="ChangeCartNum" @attrVal="attrVal" @iptCartNum="iptCartNum" @goCat="reGoCat"
  135. id='product-window'></productWindow>
  136. <!-- #ifdef MP -->
  137. <!-- <authorize :isAuto="isAuto" :isShowAuth="isShowAuth" @authColse="authColse"></authorize> -->
  138. <!-- #endif -->
  139. <!-- <view class="uni-p-b-96"></view> -->
  140. <view class="uni-p-b-98"></view>
  141. <!-- <pageFooter :countNum="cartCount"></pageFooter> -->
  142. <view class="foot" v-if="is_diy && newData.status && newData.status.status">
  143. <view class="page-footer" id="target" :style="{'background-color':newData.bgColor.color[0].item}">
  144. <view class="foot-item" v-for="(item,index) in newData.menuList" :key="index" @click="goRouter(item)">
  145. <block v-if="item.link == activeRouter">
  146. <image :src="item.imgList[0]"></image>
  147. <view class="txt" :style="{color:newData.activeTxtColor.color[0].item}">{{item.name}}</view>
  148. </block>
  149. <block v-else>
  150. <image :src="item.imgList[1]"></image>
  151. <view class="txt" :style="{color:newData.txtColor.color[0].item}">{{item.name}}</view>
  152. </block>
  153. <div class="count-num" v-if="item.link === '/pages/order_addcart/order_addcart' && cartCount > 0">
  154. {{cartCount}}
  155. </div>
  156. </view>
  157. </view>
  158. </view>
  159. </view>
  160. </template>
  161. <script>
  162. // #ifdef APP-PLUS
  163. let sysHeight = uni.getSystemInfoSync().statusBarHeight + 'px';
  164. // #endif
  165. // #ifndef APP-PLUS
  166. let sysHeight = 0
  167. // #endif
  168. import {
  169. getCartList,
  170. getCartCounts,
  171. changeCartNum,
  172. cartDel,
  173. getResetCart
  174. } from '@/api/order.js';
  175. import {
  176. getProductHot,
  177. collectAll,
  178. getProductDetail
  179. } from '@/api/store.js';
  180. import {
  181. toLogin
  182. } from '@/libs/login.js';
  183. import {
  184. mapGetters
  185. } from "vuex";
  186. import recommend from '@/components/recommend';
  187. import productWindow from '@/components/productWindow';
  188. // #ifdef MP
  189. import authorize from '@/components/Authorize';
  190. // #endif
  191. import pageFooter from '@/components/pageFooter/index.vue'
  192. import colors from "@/mixins/color";
  193. import {HTTP_REQUEST_URL} from '@/config/app';
  194. import {
  195. getNavigation
  196. } from '@/api/public.js'
  197. export default {
  198. components: {
  199. pageFooter,
  200. recommend,
  201. productWindow,
  202. // #ifdef MP
  203. authorize
  204. // #endif
  205. },
  206. mixins: [colors],
  207. data() {
  208. return {
  209. imgHost:HTTP_REQUEST_URL,
  210. is_diy: uni.getStorageSync('is_diy'),
  211. canShow: false,
  212. cartCount: 0,
  213. goodsHidden: true,
  214. footerswitch: true,
  215. hostProduct: [],
  216. cartList: {
  217. valid: [],
  218. invalid: []
  219. },
  220. isAllSelect: false, //全选
  221. selectValue: [], //选中的数据
  222. selectCountPrice: 0.00,
  223. isAuto: false, //没有授权的不会自动授权
  224. isShowAuth: false, //是否隐藏授权
  225. hotScroll: false,
  226. hotPage: 1,
  227. hotLimit: 10,
  228. loading: false,
  229. loadend: false,
  230. loadTitle: this.$t(`我也是有底线的`), //提示语
  231. page: 1,
  232. limit: 20,
  233. loadingInvalid: false,
  234. loadendInvalid: false,
  235. loadTitleInvalid: this.$t(`加载更多`), //提示语
  236. pageInvalid: 1,
  237. limitInvalid: 20,
  238. attr: {
  239. cartAttr: false,
  240. productAttr: [],
  241. productSelect: {}
  242. },
  243. productValue: [], //系统属性
  244. storeInfo: {},
  245. attrValue: '', //已选属性
  246. attrTxt: this.$t(`请选择`), //属性页面提示
  247. cartId: 0,
  248. product_id: 0,
  249. sysHeight: sysHeight,
  250. newData: {},
  251. activeRouter: '',
  252. is_diy_set: false
  253. };
  254. },
  255. computed: mapGetters(['isLogin']),
  256. onLoad(options) {
  257. if (this.is_diy) {
  258. if (uni.getStorageSync('FOOTER_BAR')) {
  259. uni.hideTabBar()
  260. } else {
  261. this.is_diy_set = true
  262. }
  263. getNavigation().then(res => {
  264. this.newData = res.data
  265. if (this.newData.status && this.newData.status.status) {
  266. uni.hideTabBar()
  267. } else {
  268. uni.showTabBar()
  269. }
  270. })
  271. } else {
  272. uni.hideTabBar()
  273. }
  274. let that = this;
  275. if (that.isLogin == false) {
  276. toLogin();
  277. }
  278. let routes = getCurrentPages(); // 获取当前打开过的页面路由数组
  279. let curRoute = routes[routes.length - 1].route //获取当前页面路由
  280. this.activeRouter = '/' + curRoute
  281. },
  282. onShow() {
  283. this.canShow = false
  284. if (this.isLogin == true) {
  285. this.hotPage = 1;
  286. this.hostProduct = [],
  287. this.hotScroll = false,
  288. this.getHostProduct();
  289. this.loadend = false;
  290. this.page = 1;
  291. this.cartList.valid = [];
  292. this.getCartList();
  293. this.loadendInvalid = false;
  294. this.pageInvalid = 1;
  295. this.cartList.invalid = [];
  296. this.getInvalidList();
  297. this.getCartNum();
  298. this.goodsHidden = true;
  299. this.footerswitch = true;
  300. this.hostProduct = [];
  301. this.hotScroll = false;
  302. this.hotPage = 1;
  303. this.hotLimit = 10;
  304. this.cartList = {
  305. valid: [],
  306. invalid: []
  307. },
  308. this.isAllSelect = false; //全选
  309. this.selectValue = []; //选中的数据
  310. this.selectCountPrice = 0.00;
  311. this.cartCount = 0;
  312. this.isShowAuth = false;
  313. };
  314. },
  315. methods: {
  316. // 授权关闭
  317. authColse: function(e) {
  318. this.isShowAuth = e;
  319. },
  320. // 修改购物车
  321. reGoCat: function() {
  322. let that = this,
  323. productSelect = that.productValue[this.attrValue];
  324. //如果有属性,没有选择,提示用户选择
  325. if (
  326. that.attr.productAttr.length &&
  327. productSelect === undefined
  328. )
  329. return that.$util.Tips({
  330. title: that.$t(`产品库存不足,请选择其它`)
  331. });
  332. let q = {
  333. id: that.cartId,
  334. product_id: that.product_id,
  335. num: that.attr.productSelect.cart_num,
  336. unique: that.attr.productSelect !== undefined ?
  337. that.attr.productSelect.unique : ""
  338. };
  339. getResetCart(q)
  340. .then(function(res) {
  341. that.attr.cartAttr = false;
  342. that.$util.Tips({
  343. title: that.$t(`添加购物车成功`),
  344. success: () => {
  345. that.loadend = false;
  346. that.page = 1;
  347. that.cartList.valid = [];
  348. that.getCartList();
  349. that.getCartNum();
  350. }
  351. });
  352. })
  353. .catch(res => {
  354. return that.$util.Tips({
  355. title: res.msg
  356. });
  357. });
  358. },
  359. onMyEvent: function() {
  360. this.$set(this.attr, 'cartAttr', false);
  361. },
  362. reElection: function(item) {
  363. this.getGoodsDetails(item)
  364. },
  365. /**
  366. * 获取产品详情
  367. *
  368. */
  369. getGoodsDetails: function(item) {
  370. uni.showLoading({
  371. title: this.$t(`加载中`),
  372. mask: true
  373. });
  374. let that = this;
  375. that.cartId = item.id;
  376. that.product_id = item.product_id;
  377. getProductDetail(item.product_id).then(res => {
  378. uni.hideLoading();
  379. that.attr.cartAttr = true;
  380. let storeInfo = res.data.storeInfo;
  381. that.$set(that, 'storeInfo', storeInfo);
  382. that.$set(that.attr, 'productAttr', res.data.productAttr);
  383. that.$set(that, 'productValue', res.data.productValue);
  384. that.DefaultSelect();
  385. }).catch(err => {
  386. uni.hideLoading();
  387. })
  388. },
  389. /**
  390. * 属性变动赋值
  391. *
  392. */
  393. ChangeAttr: function(res) {
  394. let productSelect = this.productValue[res];
  395. if (productSelect && productSelect.stock > 0) {
  396. this.$set(this.attr.productSelect, "image", productSelect.image);
  397. this.$set(this.attr.productSelect, "price", productSelect.price);
  398. this.$set(this.attr.productSelect, "stock", productSelect.stock);
  399. this.$set(this.attr.productSelect, "unique", productSelect.unique);
  400. this.$set(this.attr.productSelect, "cart_num", 1);
  401. this.$set(this, "attrValue", res);
  402. this.$set(this, "attrTxt", this.$t(`已选择`));
  403. } else {
  404. this.$set(this.attr.productSelect, "image", this.storeInfo.image);
  405. this.$set(this.attr.productSelect, "price", this.storeInfo.price);
  406. this.$set(this.attr.productSelect, "stock", 0);
  407. this.$set(this.attr.productSelect, "unique", "");
  408. this.$set(this.attr.productSelect, "cart_num", 0);
  409. this.$set(this, "attrValue", "");
  410. this.$set(this, "attrTxt", this.$t(`请选择`));
  411. }
  412. },
  413. /**
  414. * 默认选中属性
  415. *
  416. */
  417. DefaultSelect: function() {
  418. let productAttr = this.attr.productAttr;
  419. let value = [];
  420. for (var key in this.productValue) {
  421. if (this.productValue[key].stock > 0) {
  422. value = this.attr.productAttr.length ? key.split(",") : [];
  423. break;
  424. }
  425. }
  426. for (let i = 0; i < productAttr.length; i++) {
  427. this.$set(productAttr[i], "index", value[i]);
  428. }
  429. //sort();排序函数:数字-英文-汉字;
  430. let productSelect = this.productValue[value.sort().join(",")];
  431. if (productSelect && productAttr.length) {
  432. this.$set(
  433. this.attr.productSelect,
  434. "store_name",
  435. this.storeInfo.store_name
  436. );
  437. this.$set(this.attr.productSelect, "image", productSelect.image);
  438. this.$set(this.attr.productSelect, "price", productSelect.price);
  439. this.$set(this.attr.productSelect, "stock", productSelect.stock);
  440. this.$set(this.attr.productSelect, "unique", productSelect.unique);
  441. this.$set(this.attr.productSelect, "cart_num", 1);
  442. this.$set(this, "attrValue", value.sort().join(","));
  443. this.$set(this, "attrTxt", this.$t(`已选择`));
  444. } else if (!productSelect && productAttr.length) {
  445. this.$set(
  446. this.attr.productSelect,
  447. "store_name",
  448. this.storeInfo.store_name
  449. );
  450. this.$set(this.attr.productSelect, "image", this.storeInfo.image);
  451. this.$set(this.attr.productSelect, "price", this.storeInfo.price);
  452. this.$set(this.attr.productSelect, "stock", 0);
  453. this.$set(this.attr.productSelect, "unique", "");
  454. this.$set(this.attr.productSelect, "cart_num", 0);
  455. this.$set(this, "attrValue", "");
  456. this.$set(this, "attrTxt", this.$t(`请选择`));
  457. } else if (!productSelect && !productAttr.length) {
  458. this.$set(
  459. this.attr.productSelect,
  460. "store_name",
  461. this.storeInfo.store_name
  462. );
  463. this.$set(this.attr.productSelect, "image", this.storeInfo.image);
  464. this.$set(this.attr.productSelect, "price", this.storeInfo.price);
  465. this.$set(this.attr.productSelect, "stock", this.storeInfo.stock);
  466. this.$set(
  467. this.attr.productSelect,
  468. "unique",
  469. this.storeInfo.unique || ""
  470. );
  471. this.$set(this.attr.productSelect, "cart_num", 1);
  472. this.$set(this, "attrValue", "");
  473. this.$set(this, "attrTxt", this.$t(`请选择`));
  474. }
  475. },
  476. attrVal(val) {
  477. this.$set(this.attr.productAttr[val.indexw], 'index', this.attr.productAttr[val.indexw].attr_values[val
  478. .indexn]);
  479. },
  480. /**
  481. * 购物车数量加和数量减
  482. *
  483. */
  484. ChangeCartNum: function(changeValue) {
  485. //changeValue:是否 加|减
  486. //获取当前变动属性
  487. let productSelect = this.productValue[this.attrValue];
  488. //如果没有属性,赋值给商品默认库存
  489. if (productSelect === undefined && !this.attr.productAttr.length)
  490. productSelect = this.attr.productSelect;
  491. //无属性值即库存为0;不存在加减;
  492. if (productSelect === undefined) return;
  493. let stock = productSelect.stock || 0;
  494. let num = this.attr.productSelect;
  495. if (changeValue) {
  496. num.cart_num++;
  497. if (num.cart_num > stock) {
  498. this.$set(this.attr.productSelect, "cart_num", stock ? stock : 1);
  499. this.$set(this, "cart_num", stock ? stock : 1);
  500. }
  501. } else {
  502. num.cart_num--;
  503. if (num.cart_num < 1) {
  504. this.$set(this.attr.productSelect, "cart_num", 1);
  505. this.$set(this, "cart_num", 1);
  506. }
  507. }
  508. },
  509. /**
  510. * 购物车手动填写
  511. *
  512. */
  513. iptCartNum: function(e) {
  514. this.$set(this.attr.productSelect, 'cart_num', e);
  515. },
  516. subDel: function(event) {
  517. let that = this,
  518. selectValue = that.selectValue;
  519. if (selectValue.length > 0)
  520. cartDel(selectValue).then(res => {
  521. that.loadend = false;
  522. that.page = 1;
  523. that.cartList.valid = [];
  524. that.getCartList();
  525. that.getCartNum();
  526. });
  527. else
  528. return that.$util.Tips({
  529. title: that.$t(`请选择产品`)
  530. });
  531. },
  532. getSelectValueProductId: function() {
  533. let that = this;
  534. let validList = that.cartList.valid;
  535. let selectValue = that.selectValue;
  536. let productId = [];
  537. if (selectValue.length > 0) {
  538. for (let index in validList) {
  539. if (that.inArray(validList[index].id, selectValue)) {
  540. productId.push(validList[index].product_id);
  541. }
  542. }
  543. };
  544. return productId;
  545. },
  546. subCollect: function(event) {
  547. let that = this,
  548. selectValue = that.selectValue;
  549. if (selectValue.length > 0) {
  550. let selectValueProductId = that.getSelectValueProductId();
  551. collectAll(that.getSelectValueProductId().join(',')).then(res => {
  552. return that.$util.Tips({
  553. title: res.msg,
  554. icon: 'success'
  555. });
  556. }).catch(err => {
  557. return that.$util.Tips({
  558. title: err
  559. });
  560. });
  561. } else {
  562. return that.$util.Tips({
  563. title: that.$t(`请选择产品`)
  564. });
  565. }
  566. },
  567. subOrder(event) {
  568. console.log(event)
  569. let that = this,
  570. selectValue = that.selectValue;
  571. if (selectValue.length > 0) {
  572. uni.navigateTo({
  573. url: '/pages/goods/order_confirm/index?cartId=' + selectValue.join(',')
  574. });
  575. } else {
  576. return that.$util.Tips({
  577. title: that.$t(`请选择产品`)
  578. });
  579. }
  580. },
  581. checkboxAllChange: function(event) {
  582. let value = event.detail.value;
  583. if (value.length > 0) {
  584. this.setAllSelectValue(1)
  585. } else {
  586. this.setAllSelectValue(0)
  587. }
  588. },
  589. setAllSelectValue: function(status) {
  590. let that = this;
  591. let selectValue = [];
  592. let valid = that.cartList.valid;
  593. if (valid.length > 0) {
  594. let newValid = valid.map(item => {
  595. if (status) {
  596. if (that.footerswitch) {
  597. if (item.attrStatus) {
  598. item.checked = true;
  599. selectValue.push(item.id);
  600. } else {
  601. item.checked = false;
  602. }
  603. } else {
  604. item.checked = true;
  605. selectValue.push(item.id);
  606. }
  607. that.isAllSelect = true;
  608. } else {
  609. item.checked = false;
  610. that.isAllSelect = false;
  611. }
  612. return item;
  613. });
  614. that.$set(that.cartList, 'valid', newValid);
  615. that.selectValue = selectValue;
  616. that.switchSelect();
  617. }
  618. },
  619. checkboxChange: function(event) {
  620. let that = this;
  621. let value = event.detail.value;
  622. let valid = that.cartList.valid;
  623. let arr1 = [];
  624. let arr2 = [];
  625. let arr3 = [];
  626. let newValid = valid.map(item => {
  627. if (that.inArray(item.id, value)) {
  628. if (that.footerswitch) {
  629. if (item.attrStatus) {
  630. item.checked = true;
  631. arr1.push(item);
  632. } else {
  633. item.checked = false;
  634. }
  635. } else {
  636. item.checked = true;
  637. arr1.push(item);
  638. }
  639. } else {
  640. item.checked = false;
  641. arr2.push(item);
  642. }
  643. return item;
  644. });
  645. if (that.footerswitch) {
  646. arr3 = arr2.filter(item => !item.attrStatus);
  647. }
  648. // for (let index in valid) {
  649. // if (that.inArray(valid[index].id, value)){
  650. // if(valid[index].attrStatus){
  651. // valid[index].checked = true;
  652. // }else{
  653. // valid[index].checked = false;
  654. // }
  655. // } else {
  656. // valid[index].checked = false;
  657. // }
  658. // }
  659. that.$set(that.cartList, 'valid', newValid);
  660. // let newArr = that.cartList.valid.filter(item => item.attrStatus);
  661. that.isAllSelect = newValid.length === arr1.length + arr3.length;
  662. that.selectValue = value;
  663. that.switchSelect();
  664. },
  665. inArray: function(search, array) {
  666. for (let i in array) {
  667. if (array[i] == search) {
  668. return true;
  669. }
  670. }
  671. return false;
  672. },
  673. switchSelect: function() {
  674. let that = this;
  675. let validList = that.cartList.valid;
  676. let selectValue = that.selectValue;
  677. let selectCountPrice = 0.00;
  678. if (selectValue.length < 1) {
  679. that.selectCountPrice = selectCountPrice;
  680. } else {
  681. for (let index in validList) {
  682. if (that.inArray(validList[index].id, selectValue)) {
  683. selectCountPrice = that.$util.$h.Add(selectCountPrice, that.$util.$h.Mul(validList[index]
  684. .cart_num, validList[
  685. index].truePrice))
  686. }
  687. }
  688. that.selectCountPrice = selectCountPrice;
  689. }
  690. },
  691. /**
  692. * 购物车手动填写
  693. *
  694. */
  695. iptCartNum: function(index) {
  696. let item = this.cartList.valid[index];
  697. if (item.cart_num) {
  698. this.setCartNum(item.id, item.cart_num);
  699. }
  700. this.switchSelect();
  701. },
  702. blurInput: function(index) {
  703. let item = this.cartList.valid[index];
  704. console.log(item)
  705. if (!item.cart_num) {
  706. item.cart_num = 1;
  707. this.$set(this.cartList, 'valid', this.cartList.valid)
  708. }
  709. },
  710. subCart: function(index) {
  711. let that = this;
  712. let status = false;
  713. let item = that.cartList.valid[index];
  714. item.cart_num = Number(item.cart_num) - 1;
  715. if (item.cart_num < 1) status = true;
  716. if (item.cart_num <= 1) {
  717. item.cart_num = 1;
  718. item.numSub = true;
  719. } else {
  720. item.numSub = false;
  721. item.numAdd = false;
  722. }
  723. if (false == status) {
  724. that.setCartNum(item.id, item.cart_num, function(data) {
  725. that.cartList.valid[index] = item;
  726. that.getCartNum();
  727. that.switchSelect();
  728. });
  729. }
  730. },
  731. addCart: function(index) {
  732. let that = this;
  733. let item = that.cartList.valid[index];
  734. item.cart_num = Number(item.cart_num) + 1;
  735. let productInfo = item.productInfo;
  736. if (productInfo.hasOwnProperty('attrInfo') && item.cart_num >= item.productInfo.attrInfo.stock) {
  737. item.cart_num = item.productInfo.attrInfo.stock;
  738. item.numAdd = true;
  739. item.numSub = false;
  740. } else {
  741. item.numAdd = false;
  742. item.numSub = false;
  743. }
  744. that.setCartNum(item.id, item.cart_num, function(data) {
  745. that.cartList.valid[index] = item;
  746. that.getCartNum();
  747. that.switchSelect();
  748. });
  749. },
  750. setCartNum(cartId, cartNum, successCallback) {
  751. let that = this;
  752. changeCartNum(cartId, cartNum).then(res => {
  753. console.log(res)
  754. successCallback && successCallback(res.data);
  755. }).catch(err => {
  756. console.log(err)
  757. return that.$util.Tips({
  758. title: err
  759. });
  760. })
  761. },
  762. getCartNum: function() {
  763. let that = this;
  764. getCartCounts().then(res => {
  765. that.cartCount = res.data.count;
  766. this.$store.commit('indexData/setCartNum', res.data.count > 99 ? '..' : res.data.count)
  767. if (res.data.count > 0) {
  768. wx.setTabBarBadge({
  769. index: 2,
  770. text: res.data.count + ''
  771. })
  772. } else {
  773. wx.hideTabBarRedDot({
  774. index: 2
  775. })
  776. }
  777. });
  778. },
  779. getCartData(data) {
  780. return new Promise((resolve, reject) => {
  781. getCartList(data).then((res) => {
  782. resolve(res.data);
  783. }).catch((err) => {
  784. this.loading = false;
  785. this.canShow = true
  786. this.$util.Tips({
  787. title: err
  788. });
  789. })
  790. });
  791. },
  792. async getCartList() {
  793. uni.showLoading({
  794. title: this.$t(`加载中`),
  795. mask: true
  796. });
  797. let that = this;
  798. let data = {
  799. page: that.page,
  800. limit: that.limit,
  801. status: 1
  802. }
  803. getCartCounts().then(async c => {
  804. that.cartCount = c.data.count;
  805. for (let i = 0; i < Math.ceil(c.data.ids.length / that.limit); i++) {
  806. let cartList = await this.getCartData(data)
  807. let valid = cartList.valid
  808. let validList = that.$util.SplitArray(valid, that.cartList.valid);
  809. let numSub = [{
  810. numSub: true
  811. }, {
  812. numSub: false
  813. }];
  814. let numAdd = [{
  815. numAdd: true
  816. }, {
  817. numAdd: false
  818. }],
  819. selectValue = [];
  820. if (validList.length > 0) {
  821. for (let index in validList) {
  822. if (validList[index].cart_num == 1) {
  823. validList[index].numSub = true;
  824. } else {
  825. validList[index].numSub = false;
  826. }
  827. let productInfo = validList[index].productInfo;
  828. if (productInfo.hasOwnProperty('attrInfo') && validList[index].cart_num ==
  829. validList[index].productInfo.attrInfo
  830. .stock) {
  831. validList[index].numAdd = true;
  832. } else if (validList[index].cart_num == validList[index].productInfo
  833. .stock) {
  834. validList[index].numAdd = true;
  835. } else {
  836. validList[index].numAdd = false;
  837. }
  838. if (validList[index].attrStatus) {
  839. validList[index].checked = true;
  840. selectValue.push(validList[index].id);
  841. } else {
  842. validList[index].checked = false;
  843. }
  844. }
  845. }
  846. that.$set(that.cartList, 'valid', validList);
  847. data.page = that.page + 1;
  848. // that.goodsHidden = cartList.valid.length <= 0 ? false : true;
  849. that.selectValue = selectValue;
  850. let newArr = validList.filter(item => item.attrStatus);
  851. that.isAllSelect = newArr.length == selectValue.length && newArr.length;
  852. that.switchSelect();
  853. }
  854. that.loading = false;
  855. this.canShow = true
  856. uni.hideLoading();
  857. });
  858. },
  859. getInvalidList: function() {
  860. let that = this;
  861. if (this.loadendInvalid) return false;
  862. if (this.loadingInvalid) return false;
  863. let data = {
  864. page: that.pageInvalid,
  865. limit: that.limitInvalid,
  866. status: 0
  867. }
  868. getCartList(data).then(res => {
  869. let cartList = res.data,
  870. invalid = cartList.invalid,
  871. loadendInvalid = invalid.length < that.limitInvalid;
  872. let invalidList = that.$util.SplitArray(invalid, that.cartList.invalid);
  873. that.$set(that.cartList, 'invalid', invalidList);
  874. that.loadendInvalid = loadendInvalid;
  875. that.loadTitleInvalid = loadendInvalid ? that.$t(`我也是有底线的`) : that.$t(`加载更多`);
  876. that.pageInvalid = that.pageInvalid + 1;
  877. that.loadingInvalid = false;
  878. }).catch(res => {
  879. that.loadingInvalid = false;
  880. that.loadTitleInvalid = that.$t(`加载更多`);
  881. })
  882. },
  883. getHostProduct: function() {
  884. let that = this;
  885. if (that.hotScroll) return
  886. getProductHot(
  887. that.hotPage,
  888. that.hotLimit,
  889. ).then(res => {
  890. that.hotPage++
  891. that.hotScroll = res.data.length < that.hotLimit
  892. that.hostProduct = that.hostProduct.concat(res.data)
  893. });
  894. },
  895. goodsOpen: function() {
  896. let that = this;
  897. that.goodsHidden = !that.goodsHidden;
  898. },
  899. goRouter(item) {
  900. var pages = getCurrentPages();
  901. var page = (pages[pages.length - 1]).$page.fullPath;
  902. if (item.link == page) return
  903. uni.switchTab({
  904. url: item.link,
  905. fail(err) {
  906. uni.redirectTo({
  907. url: item.link
  908. })
  909. }
  910. })
  911. },
  912. manage: function() {
  913. let that = this;
  914. that.footerswitch = !that.footerswitch;
  915. let arr1 = [];
  916. let arr2 = [];
  917. let newValid = that.cartList.valid.map(item => {
  918. if (that.footerswitch) {
  919. if (item.attrStatus) {
  920. if (item.checked) {
  921. arr1.push(item.id);
  922. }
  923. } else {
  924. item.checked = false;
  925. arr2.push(item);
  926. }
  927. } else {
  928. if (item.checked) {
  929. arr1.push(item.id);
  930. }
  931. }
  932. return item;
  933. });
  934. that.cartList.valid = newValid;
  935. if (that.footerswitch) {
  936. that.isAllSelect = newValid.length === arr1.length + arr2.length;
  937. } else {
  938. that.isAllSelect = newValid.length === arr1.length;
  939. }
  940. that.selectValue = arr1;
  941. that.switchSelect();
  942. },
  943. unsetCart: function() {
  944. let that = this,
  945. ids = [];
  946. for (let i = 0, len = that.cartList.invalid.length; i < len; i++) {
  947. ids.push(that.cartList.invalid[i].id);
  948. }
  949. cartDel(ids).then(res => {
  950. that.$util.Tips({
  951. title: that.$t(`清除成功`)
  952. });
  953. that.$set(that.cartList, 'invalid', []);
  954. that.getCartNum();
  955. }).catch(res => {
  956. });
  957. }
  958. },
  959. onReachBottom() {
  960. let that = this;
  961. if (that.loadend) {
  962. that.getInvalidList();
  963. }
  964. if (that.cartList.valid.length == 0 && that.cartList.invalid.length == 0) {
  965. that.getHostProduct();
  966. }
  967. }
  968. }
  969. </script>
  970. <style scoped lang="scss">
  971. .page-footer {
  972. position: fixed;
  973. bottom: 0;
  974. z-index: 30;
  975. display: flex;
  976. align-items: center;
  977. justify-content: space-around;
  978. width: 100%;
  979. height: calc(98rpx+ constant(safe-area-inset-bottom)); ///兼容 IOS<11.2/
  980. height: calc(98rpx + env(safe-area-inset-bottom)); ///兼容 IOS>11.2/
  981. box-sizing: border-box;
  982. border-top: solid 1rpx #F3F3F3;
  983. background-color: #fff;
  984. box-shadow: 0px 0px 17rpx 1rpx rgba(206, 206, 206, 0.32);
  985. padding-bottom: constant(safe-area-inset-bottom); ///兼容 IOS<11.2/
  986. padding-bottom: env(safe-area-inset-bottom); ///兼容 IOS>11.2/
  987. .foot-item {
  988. display: flex;
  989. width: max-content;
  990. align-items: center;
  991. justify-content: center;
  992. flex-direction: column;
  993. position: relative;
  994. .count-num {
  995. position: absolute;
  996. display: flex;
  997. justify-content: center;
  998. align-items: center;
  999. width: 40rpx;
  1000. height: 40rpx;
  1001. top: 0rpx;
  1002. right: -15rpx;
  1003. color: #fff;
  1004. font-size: 20rpx;
  1005. background-color: #FD502F;
  1006. border-radius: 50%;
  1007. padding: 4rpx;
  1008. }
  1009. }
  1010. .foot-item image {
  1011. height: 50rpx;
  1012. width: 50rpx;
  1013. text-align: center;
  1014. margin: 0 auto;
  1015. }
  1016. .foot-item .txt {
  1017. font-size: 24rpx;
  1018. &.active {}
  1019. }
  1020. }
  1021. .shoppingCart {
  1022. /* #ifdef H5 */
  1023. // padding-bottom: 0;
  1024. // padding-bottom: constant(safe-area-inset-bottom);
  1025. // padding-bottom: env(safe-area-inset-bottom);
  1026. /* #endif */
  1027. }
  1028. .shoppingCart .labelNav {
  1029. height: 76rpx;
  1030. padding: 0 30rpx;
  1031. font-size: 22rpx;
  1032. color: #8c8c8c;
  1033. position: fixed;
  1034. left: 0;
  1035. width: 100%;
  1036. box-sizing: border-box;
  1037. background-color: #f5f5f5;
  1038. z-index: 5;
  1039. top: 0;
  1040. }
  1041. .shoppingCart .labelNav .item .iconfont {
  1042. font-size: 25rpx;
  1043. margin-right: 10rpx;
  1044. }
  1045. .shoppingCart .nav {
  1046. width: 100%;
  1047. height: 80rpx;
  1048. background-color: #fff;
  1049. padding: 0 30rpx;
  1050. box-sizing: border-box;
  1051. font-size: 28rpx;
  1052. color: #282828;
  1053. position: fixed;
  1054. left: 0;
  1055. z-index: 5;
  1056. top: 76rpx;
  1057. }
  1058. .shoppingCart .nav .num {
  1059. margin-left: 12rpx;
  1060. }
  1061. .shoppingCart .nav .administrate {
  1062. font-size: 26rpx;
  1063. color: #282828;
  1064. width: 110rpx;
  1065. height: 46rpx;
  1066. border-radius: 6rpx;
  1067. border: 1px solid #a4a4a4;
  1068. }
  1069. .shoppingCart .noCart {
  1070. margin-top: 171rpx;
  1071. background-color: #fff;
  1072. padding-top: 0.1rpx;
  1073. }
  1074. .shoppingCart .noCart .pictrue {
  1075. width: 414rpx;
  1076. height: 336rpx;
  1077. margin: 78rpx auto 56rpx auto;
  1078. }
  1079. .shoppingCart .noCart .pictrue image {
  1080. width: 100%;
  1081. height: 100%;
  1082. }
  1083. .shoppingCart .list {
  1084. margin-top: 171rpx;
  1085. }
  1086. .shoppingCart .list .item {
  1087. padding: 25rpx 30rpx;
  1088. background-color: #fff;
  1089. margin-bottom: 15rpx;
  1090. }
  1091. .shoppingCart .list .item .picTxt {
  1092. width: 627rpx;
  1093. position: relative;
  1094. }
  1095. .shoppingCart .list .item .picTxt .pictrue {
  1096. width: 160rpx;
  1097. height: 160rpx;
  1098. }
  1099. .shoppingCart .list .item .picTxt .pictrue image {
  1100. width: 100%;
  1101. height: 100%;
  1102. border-radius: 6rpx;
  1103. }
  1104. .shoppingCart .list .item .picTxt .text {
  1105. width: 444rpx;
  1106. font-size: 28rpx;
  1107. color: #282828;
  1108. }
  1109. .shoppingCart .list .item .picTxt .text .reColor {
  1110. color: #999;
  1111. }
  1112. .shoppingCart .list .item .picTxt .text .reElection {
  1113. margin-top: 20rpx;
  1114. }
  1115. .shoppingCart .list .item .picTxt .text .reElection .title {
  1116. font-size: 24rpx;
  1117. }
  1118. .shoppingCart .list .item .picTxt .text .reElection .reBnt {
  1119. width: 120rpx;
  1120. height: 46rpx;
  1121. border-radius: 23rpx;
  1122. font-size: 26rpx;
  1123. }
  1124. .shoppingCart .list .item .picTxt .text .infor {
  1125. font-size: 24rpx;
  1126. color: #868686;
  1127. margin-top: 16rpx;
  1128. }
  1129. .shoppingCart .list .item .picTxt .text .money {
  1130. font-size: 32rpx;
  1131. color: var(--view-theme);
  1132. margin-top: 28rpx;
  1133. }
  1134. .shoppingCart .list .item .picTxt .carnum {
  1135. height: 47rpx;
  1136. position: absolute;
  1137. bottom: 7rpx;
  1138. right: 0;
  1139. }
  1140. .shoppingCart .list .item .picTxt .carnum view {
  1141. border: 1rpx solid #a4a4a4;
  1142. width: 66rpx;
  1143. text-align: center;
  1144. height: 100%;
  1145. line-height: 40rpx;
  1146. font-size: 28rpx;
  1147. color: #a4a4a4;
  1148. }
  1149. .shoppingCart .list .item .picTxt .carnum .reduce {
  1150. border-right: 0;
  1151. border-radius: 3rpx 0 0 3rpx;
  1152. }
  1153. .shoppingCart .list .item .picTxt .carnum .reduce.on {
  1154. border-color: #e3e3e3;
  1155. color: #dedede;
  1156. }
  1157. .shoppingCart .list .item .picTxt .carnum .plus {
  1158. border-left: 0;
  1159. border-radius: 0 3rpx 3rpx 0;
  1160. }
  1161. .shoppingCart .list .item .picTxt .carnum .plus.on {
  1162. border-color: #e3e3e3;
  1163. color: #dedede;
  1164. }
  1165. .shoppingCart .list .item .picTxt .carnum .num {
  1166. color: #282828;
  1167. }
  1168. .shoppingCart .invalidGoods {
  1169. background-color: #fff;
  1170. }
  1171. .shoppingCart .invalidGoods .goodsNav {
  1172. width: 100%;
  1173. height: 66rpx;
  1174. padding: 0 30rpx;
  1175. box-sizing: border-box;
  1176. font-size: 28rpx;
  1177. color: #282828;
  1178. }
  1179. .shoppingCart .invalidGoods .goodsNav .iconfont {
  1180. color: #424242;
  1181. font-size: 28rpx;
  1182. margin-right: 17rpx;
  1183. }
  1184. .shoppingCart .invalidGoods .goodsNav .del {
  1185. font-size: 26rpx;
  1186. color: #999;
  1187. }
  1188. .shoppingCart .invalidGoods .goodsNav .del .icon-shanchu1 {
  1189. color: #999;
  1190. font-size: 33rpx;
  1191. vertical-align: -2rpx;
  1192. margin-right: 8rpx;
  1193. }
  1194. .shoppingCart .invalidGoods .goodsList .item {
  1195. padding: 20rpx 30rpx;
  1196. border-top: 1rpx solid #f5f5f5;
  1197. }
  1198. .shoppingCart .invalidGoods .goodsList .item .invalid {
  1199. font-size: 22rpx;
  1200. color: #fff;
  1201. width: 70rpx;
  1202. height: 36rpx;
  1203. background-color: #aaa;
  1204. border-radius: 3rpx;
  1205. text-align: center;
  1206. line-height: 36rpx;
  1207. }
  1208. .shoppingCart .invalidGoods .goodsList .item .pictrue {
  1209. width: 140rpx;
  1210. height: 140rpx;
  1211. }
  1212. .shoppingCart .invalidGoods .goodsList .item .pictrue image {
  1213. width: 100%;
  1214. height: 100%;
  1215. border-radius: 6rpx;
  1216. }
  1217. .shoppingCart .invalidGoods .goodsList .item .text {
  1218. width: 433rpx;
  1219. font-size: 28rpx;
  1220. color: #999;
  1221. height: 140rpx;
  1222. }
  1223. .shoppingCart .invalidGoods .goodsList .item .text .name {
  1224. width: 100%;
  1225. }
  1226. .shoppingCart .invalidGoods .goodsList .item .text .infor {
  1227. font-size: 24rpx;
  1228. }
  1229. .shoppingCart .invalidGoods .goodsList .item .text .end {
  1230. font-size: 26rpx;
  1231. color: #bbb;
  1232. }
  1233. .shoppingCart .footer {
  1234. z-index: 999;
  1235. width: 100%;
  1236. height: 96rpx;
  1237. background-color: #fafafa;
  1238. position: fixed;
  1239. padding: 0 30rpx;
  1240. box-sizing: border-box;
  1241. border-top: 1rpx solid #eee;
  1242. bottom: 98rpx;
  1243. bottom: calc(98rpx + constant(safe-area-inset-bottom)); ///兼容 IOS<11.2/
  1244. bottom: calc(98rpx + env(safe-area-inset-bottom)); ///兼容 IOS>11.2/
  1245. }
  1246. .shoppingCart .footer.on {
  1247. // #ifndef H5
  1248. bottom: 0rpx;
  1249. // #endif
  1250. }
  1251. .shoppingCart .footer .checkAll {
  1252. font-size: 28rpx;
  1253. color: #282828;
  1254. margin-left: 16rpx;
  1255. }
  1256. // .shoppingCart .footer checkbox .wx-checkbox-input{background-color:#fafafa;}
  1257. .shoppingCart .footer .money {
  1258. font-size: 30rpx;
  1259. }
  1260. .shoppingCart .footer .placeOrder {
  1261. color: #fff;
  1262. font-size: 30rpx;
  1263. width: 226rpx;
  1264. height: 70rpx;
  1265. border-radius: 50rpx;
  1266. text-align: center;
  1267. line-height: 70rpx;
  1268. margin-left: 22rpx;
  1269. }
  1270. .shoppingCart .footer .button .bnt {
  1271. font-size: 28rpx;
  1272. color: #999;
  1273. border-radius: 50rpx;
  1274. border: 1px solid #999;
  1275. width: 160rpx;
  1276. height: 60rpx;
  1277. text-align: center;
  1278. line-height: 60rpx;
  1279. }
  1280. .shoppingCart .footer .button form~form {
  1281. margin-left: 17rpx;
  1282. }
  1283. .uni-p-b-96 {
  1284. height: 96rpx;
  1285. }
  1286. .uni-p-b-98 {
  1287. height: 100rpx;
  1288. /* 兼容 IOS<11.2 */
  1289. height: calc(100rpx + constant(safe-area-inset-bottom));
  1290. /* 兼容 IOS>11.2 */
  1291. height: calc(100rpx + env(safe-area-inset-bottom));
  1292. }
  1293. .emptyBox{
  1294. text-align: center;
  1295. padding-top: 20rpx;
  1296. .tips{
  1297. color: #aaa;
  1298. font-size: 26rpx;
  1299. }
  1300. image {
  1301. width: 414rpx;
  1302. height: 304rpx;
  1303. }
  1304. }
  1305. </style>