order_addcart.vue 37 KB

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