| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336 |
- <template>
- <view :style="colorStyle">
- <view class="shoppingCart copy-data" v-if="canShow">
- <view class="labelNav acea-row row-around row-middle">
- <view class="item">
- <text class="iconfont icon-xuanzhong"></text>
- {{ $t(`100%正品保证`) }}
- </view>
- <view class="item">
- <text class="iconfont icon-xuanzhong"></text>
- {{ $t(`所有商品精挑细选`) }}
- </view>
- <view class="item">
- <text class="iconfont icon-xuanzhong"></text>
- {{ $t(`售后无忧`) }}
- </view>
- </view>
- <view class="nav acea-row row-between-wrapper">
- <view>
- {{ $t(`购物数量`) }}
- <text class="num font-num">{{ cartCount }}</text>
- </view>
- <view v-if="cartList.valid.length > 0 || cartList.invalid.length > 0" class="administrate acea-row row-center-wrapper" @click="manage">
- {{ footerswitch ? $t(`管理`) : $t(`取消`) }}
- </view>
- </view>
- <view v-if="(cartList.valid.length > 0 || cartList.invalid.length > 0) && canShow">
- <view class="list">
- <checkbox-group @change="checkboxChange">
- <block v-for="(item, index) in cartList.valid" :key="index">
- <view class="item acea-row row-between-wrapper">
- <!-- #ifndef MP -->
- <checkbox :value="item.id.toString()" :checked="item.checked" :disabled="!item.attrStatus && footerswitch" />
- <!-- <checkbox :value="(item.id).toString()" :checked="item.checked" :disabled="item.attrStatus?false:true" /> -->
- <!-- #endif -->
- <!-- #ifdef MP -->
- <checkbox :value="item.id" :checked="item.checked" :disabled="!item.attrStatus && footerswitch" />
- <!-- #endif -->
- <navigator :url="'/pages/goods_details/index?id=' + item.product_id" hover-class="none" class="picTxt acea-row row-between-wrapper">
- <view class="pictrue">
- <image v-if="item.productInfo.attrInfo" :src="item.productInfo.attrInfo.image"></image>
- <image v-else :src="item.productInfo.image"></image>
- </view>
- <view class="text">
- <view class="line2" :class="item.attrStatus ? '' : 'reColor'">
- {{ item.productInfo.store_name }}
- </view>
- <view class="infor line1" v-if="item.productInfo.attrInfo">{{ $t(`属性`) }}:{{ item.productInfo.attrInfo.suk }}</view>
- <view class="money" v-if="item.attrStatus">{{ $t(`¥`) }}{{ item.truePrice }}</view>
- <view class="reElection acea-row row-between-wrapper" v-else>
- <view class="title">{{ $t(`请重新选择商品规格`) }}</view>
- <view class="reBnt cart-color acea-row row-center-wrapper" @click.stop="reElection(item)">{{ $t(`重选`) }}</view>
- </view>
- </view>
- <view class="carnum acea-row row-center-wrapper" v-if="item.attrStatus">
- <view class="reduce" :class="item.numSub && !disabledChangeNumber ? 'on' : ''" @click.stop="subCart(index)">-</view>
- <!-- <view class='num'>{{item.cart_num}}</view> -->
- <view class="num">
- <input type="number" v-model="item.cart_num" @click.stop @input="iptCartNum(index)" @blur="blurInput(index)" />
- </view>
- <view class="plus" :class="item.numAdd && !disabledChangeNumber ? 'on' : ''" @click.stop="addCart(index)">+</view>
- </view>
- </navigator>
- </view>
- </block>
- </checkbox-group>
- </view>
- <view class="invalidGoods" v-if="cartList.invalid.length > 0">
- <view class="goodsNav acea-row row-between-wrapper">
- <view @click="goodsOpen">
- <text class="iconfont" :class="goodsHidden == true ? 'icon-xiangxia' : 'icon-xiangshang'"></text>
- {{ $t(`失效商品`) }}
- </view>
- <view class="del" @click="unsetCart">
- <text class="iconfont icon-shanchu1"></text>
- {{ $t(`清空`) }}
- </view>
- </view>
- <view class="goodsList" :hidden="goodsHidden">
- <block v-for="(item, index) in cartList.invalid" :key="index">
- <view class="item acea-row row-between-wrapper">
- <view class="invalid">{{ $t(`失效`) }}</view>
- <view class="pictrue">
- <image v-if="item.productInfo.attrInfo" :src="item.productInfo.attrInfo.image"></image>
- <image v-else :src="item.productInfo.image"></image>
- </view>
- <view class="text acea-row row-column-between">
- <view class="line1 name">{{ item.productInfo.store_name }}</view>
- <view class="infor line1" v-if="item.productInfo.attrInfo">{{ $t(`属性`) }}:{{ item.productInfo.attrInfo.suk }}</view>
- <view class="acea-row row-between-wrapper">
- <!-- <view>¥{{item.truePrice}}</view> -->
- <view class="end">{{ $t(`该商品已失效`) }}</view>
- </view>
- </view>
- </view>
- </block>
- </view>
- </view>
- <!-- <view class='loadingicon acea-row row-center-wrapper' v-if="cartList.valid.length&&!loadend">
- <text class='loading iconfont icon-jiazai' :hidden='loading==false'></text>{{loadTitle}}
- </view> -->
- <view class="loadingicon acea-row row-center-wrapper" v-if="cartList.invalid.length && loadend">
- <text class="loading iconfont icon-jiazai" :hidden="loadingInvalid == false"></text>
- {{ loadTitleInvalid }}
- </view>
- </view>
- <view class="noCart" v-if="cartList.valid.length == 0 && cartList.invalid.length == 0 && canShow">
- <view class="emptyBox">
- <image :src="imgHost + '/statics/images/no-thing.png'"></image>
- <view class="tips">{{ $t(`暂无商品`) }}</view>
- </view>
- <recommend v-if="hostProduct.length" :hostProduct="hostProduct"></recommend>
- </view>
- <view style="height: 120rpx; color: #f5f5f5"></view>
- <view class="footer acea-row row-between-wrapper" v-if="cartList.valid.length > 0 && canShow" :class="is_diy && is_diy_set ? 'on' : ''">
- <view>
- <checkbox-group @change="checkboxAllChange">
- <checkbox value="all" :checked="!!isAllSelect" />
- <text class="checkAll">{{ $t(`全选`) }}({{ selectValue.length }})</text>
- </checkbox-group>
- </view>
- <view class="money acea-row row-middle" v-if="footerswitch == true">
- <text class="font-color">{{ $t(`¥`) }}{{ selectCountPrice }}</text>
- <form @submit="subOrder">
- <button class="placeOrder bg-color" formType="submit">{{ $t(`立即下单`) }}</button>
- </form>
- </view>
- <view class="button acea-row row-middle" v-else>
- <form @submit="subCollect">
- <button class="bnt" formType="submit">{{ $t(`收藏`) }}</button>
- </form>
- <form @submit="subDel">
- <button class="bnt cart-color" formType="submit">{{ $t(`删除`) }}</button>
- </form>
- </view>
- </view>
- </view>
- <productWindow
- :attr="attr"
- :isShow="1"
- :iSplus="1"
- :iScart="1"
- @myevent="onMyEvent"
- @ChangeAttr="ChangeAttr"
- @ChangeCartNum="ChangeCartNum"
- @attrVal="attrVal"
- @iptCartNum="iptCartNum"
- @goCat="reGoCat"
- id="product-window"
- ></productWindow>
- <!-- #ifdef MP -->
- <!-- <authorize :isAuto="isAuto" :isShowAuth="isShowAuth" @authColse="authColse"></authorize> -->
- <!-- #endif -->
- <!-- <view class="uni-p-b-96"></view> -->
- <view class="uni-p-b-98"></view>
- <pageFooter @newDataStatus="newDataStatus"></pageFooter>
- </view>
- </template>
- <script>
- // #ifdef APP-PLUS
- let sysHeight = uni.getSystemInfoSync().statusBarHeight + 'px';
- // #endif
- // #ifndef APP-PLUS
- let sysHeight = 0;
- // #endif
- import { getCartList, getCartCounts, changeCartNum, cartDel, getResetCart } from '@/api/order.js';
- import { getProductHot, collectAll, getProductDetail } from '@/api/store.js';
- import { toLogin } from '@/libs/login.js';
- import { mapGetters } from 'vuex';
- import recommend from '@/components/recommend';
- import productWindow from '@/components/productWindow';
- // #ifdef MP
- import authorize from '@/components/Authorize';
- // #endif
- import pageFooter from '@/components/pageFooter/index.vue'
- import colors from '@/mixins/color';
- import { HTTP_REQUEST_URL, DEBOUNCETIME } from '@/config/app';
- import { Throttle } from '@/utils/validate.js';
- export default {
- components: {
- pageFooter,
- recommend,
- productWindow,
- // #ifdef MP
- authorize
- // #endif
- },
- mixins: [colors],
- data() {
- return {
- imgHost: HTTP_REQUEST_URL,
- is_diy: uni.getStorageSync('is_diy'),
- canShow: false,
- cartCount: 0,
- goodsHidden: true,
- footerswitch: true,
- hostProduct: [],
- cartList: {
- valid: [],
- invalid: []
- },
- isAllSelect: false, //全选
- selectValue: [], //选中的数据
- selectCountPrice: 0.0,
- isAuto: false, //没有授权的不会自动授权
- isShowAuth: false, //是否隐藏授权
- hotScroll: false,
- hotPage: 1,
- hotLimit: 10,
- loading: false,
- loadend: false,
- loadTitle: this.$t(`我也是有底线的`), //提示语
- page: 1,
- limit: 20,
- loadingInvalid: false,
- loadendInvalid: false,
- loadTitleInvalid: this.$t(`加载更多`), //提示语
- pageInvalid: 1,
- limitInvalid: 20,
- attr: {
- cartAttr: false,
- productAttr: [],
- productSelect: {}
- },
- productValue: [], //系统属性
- storeInfo: {},
- attrValue: '', //已选属性
- attrTxt: this.$t(`请选择`), //属性页面提示
- cartId: 0,
- product_id: 0,
- sysHeight: sysHeight,
- newData: {},
- activeRouter: '',
- is_diy_set: false,
- adding: false,
- disabledChangeNumber: false,
- isFooter: false,
- pdHeight:0 //自定义底部导航上下边距和
- };
- },
- computed: mapGetters(['isLogin']),
- onLoad(options) {
- uni.hideTabBar();
- let that = this;
- let routes = getCurrentPages(); // 获取当前打开过的页面路由数组
- let curRoute = routes[routes.length - 1].route; //获取当前页面路由
- this.activeRouter = '/' + curRoute;
- },
- onShow() {
- // #ifndef MP
- if (!this.isLogin) toLogin();
- // #endif
- this.canShow = false;
- if (this.isLogin == true) {
- this.hotPage = 1;
- this.hostProduct = [];
- this.hotScroll = false;
- this.getHostProduct();
- this.loadend = false;
- this.page = 1;
- this.cartList.valid = [];
- this.getCartList(1);
- this.loadendInvalid = false;
- this.pageInvalid = 1;
- this.cartList.invalid = [];
- this.getInvalidList();
- // this.getCartNum();
- this.goodsHidden = true;
- this.footerswitch = true;
- this.hostProduct = [];
- this.hotScroll = false;
- this.hotPage = 1;
- this.hotLimit = 10;
- (this.cartList = {
- valid: [],
- invalid: []
- }),
- (this.isAllSelect = false); //全选
- this.selectValue = []; //选中的数据
- this.selectCountPrice = 0.0;
- this.cartCount = 0;
- this.isShowAuth = false;
- } else {
- // #ifdef MP
- this.hotPage = 1;
- this.hostProduct = [];
- this.hotScroll = false;
- this.getHostProduct();
- this.loading = false;
- this.canShow = true;
- // #endif
- }
- },
- methods: {
- // 授权关闭
- authColse: function (e) {
- this.isShowAuth = e;
- },
- newDataStatus(val,num) {
- this.isFooter = val ? true : false;
- this.pdHeight = num;
- },
- // 修改购物车
- reGoCat: function () {
- let that = this,
- productSelect = that.productValue[this.attrValue];
- //如果有属性,没有选择,提示用户选择
- if (that.attr.productAttr.length && productSelect === undefined)
- return that.$util.Tips({
- title: that.$t(`产品库存不足,请选择其它`)
- });
- let q = {
- id: that.cartId,
- product_id: that.product_id,
- num: that.attr.productSelect.cart_num,
- unique: that.attr.productSelect !== undefined ? that.attr.productSelect.unique : ''
- };
- getResetCart(q)
- .then(function (res) {
- that.attr.cartAttr = false;
- that.$util.Tips({
- title: that.$t(`添加购物车成功`),
- success: () => {
- that.loadend = false;
- that.page = 1;
- that.cartList.valid = [];
- that.getCartList();
- that.getCartNum();
- }
- });
- })
- .catch((res) => {
- return that.$util.Tips({
- title: res.msg
- });
- });
- },
- onMyEvent: function () {
- this.$set(this.attr, 'cartAttr', false);
- },
- reElection: function (item) {
- this.getGoodsDetails(item);
- },
- /**
- * 获取产品详情
- *
- */
- getGoodsDetails: function (item) {
- uni.showLoading({
- title: this.$t(`加载中`),
- mask: true
- });
- let that = this;
- that.cartId = item.id;
- that.product_id = item.product_id;
- getProductDetail(item.product_id)
- .then((res) => {
- uni.hideLoading();
- that.attr.cartAttr = true;
- let storeInfo = res.data.storeInfo;
- that.$set(that, 'storeInfo', storeInfo);
- that.$set(that.attr, 'productAttr', res.data.productAttr);
- that.$set(that, 'productValue', res.data.productValue);
- that.DefaultSelect();
- })
- .catch((err) => {
- uni.hideLoading();
- });
- },
- /**
- * 属性变动赋值
- *
- */
- ChangeAttr: function (res) {
- let productSelect = this.productValue[res];
- if (productSelect && productSelect.stock > 0) {
- this.$set(this.attr.productSelect, 'image', productSelect.image);
- this.$set(this.attr.productSelect, 'price', productSelect.price);
- this.$set(this.attr.productSelect, 'stock', productSelect.stock);
- this.$set(this.attr.productSelect, 'unique', productSelect.unique);
- this.$set(this.attr.productSelect, 'cart_num', 1);
- this.$set(this, 'attrValue', res);
- this.$set(this, 'attrTxt', this.$t(`已选择`));
- } else {
- this.$set(this.attr.productSelect, 'image', this.storeInfo.image);
- this.$set(this.attr.productSelect, 'price', this.storeInfo.price);
- this.$set(this.attr.productSelect, 'stock', 0);
- this.$set(this.attr.productSelect, 'unique', '');
- this.$set(this.attr.productSelect, 'cart_num', 0);
- this.$set(this, 'attrValue', '');
- this.$set(this, 'attrTxt', this.$t(`请选择`));
- }
- },
- /**
- * 默认选中属性
- *
- */
- DefaultSelect: function () {
- let productAttr = this.attr.productAttr;
- let value = [];
- for (var key in this.productValue) {
- if (this.productValue[key].stock > 0) {
- value = this.attr.productAttr.length ? key.split(',') : [];
- break;
- }
- }
- for (let i = 0; i < productAttr.length; i++) {
- this.$set(productAttr[i], 'index', value[i]);
- }
- //sort();排序函数:数字-英文-汉字;
- let productSelect = this.productValue[value.sort().join(',')];
- if (productSelect && productAttr.length) {
- this.$set(this.attr.productSelect, 'store_name', this.storeInfo.store_name);
- this.$set(this.attr.productSelect, 'image', productSelect.image);
- this.$set(this.attr.productSelect, 'price', productSelect.price);
- this.$set(this.attr.productSelect, 'stock', productSelect.stock);
- this.$set(this.attr.productSelect, 'unique', productSelect.unique);
- this.$set(this.attr.productSelect, 'cart_num', 1);
- this.$set(this, 'attrValue', value.sort().join(','));
- this.$set(this, 'attrTxt', this.$t(`已选择`));
- } else if (!productSelect && productAttr.length) {
- this.$set(this.attr.productSelect, 'store_name', this.storeInfo.store_name);
- this.$set(this.attr.productSelect, 'image', this.storeInfo.image);
- this.$set(this.attr.productSelect, 'price', this.storeInfo.price);
- this.$set(this.attr.productSelect, 'stock', 0);
- this.$set(this.attr.productSelect, 'unique', '');
- this.$set(this.attr.productSelect, 'cart_num', 0);
- this.$set(this, 'attrValue', '');
- this.$set(this, 'attrTxt', this.$t(`请选择`));
- } else if (!productSelect && !productAttr.length) {
- this.$set(this.attr.productSelect, 'store_name', this.storeInfo.store_name);
- this.$set(this.attr.productSelect, 'image', this.storeInfo.image);
- this.$set(this.attr.productSelect, 'price', this.storeInfo.price);
- this.$set(this.attr.productSelect, 'stock', this.storeInfo.stock);
- this.$set(this.attr.productSelect, 'unique', this.storeInfo.unique || '');
- this.$set(this.attr.productSelect, 'cart_num', 1);
- this.$set(this, 'attrValue', '');
- this.$set(this, 'attrTxt', this.$t(`请选择`));
- }
- },
- attrVal(val) {
- this.$set(this.attr.productAttr[val.indexw], 'index', this.attr.productAttr[val.indexw].attr_values[val.indexn]);
- },
- /**
- * 购物车数量加和数量减
- *
- */
- ChangeCartNum: function (changeValue) {
- //changeValue:是否 加|减
- //获取当前变动属性
- let productSelect = this.productValue[this.attrValue];
- //如果没有属性,赋值给商品默认库存
- if (productSelect === undefined && !this.attr.productAttr.length) productSelect = this.attr.productSelect;
- //无属性值即库存为0;不存在加减;
- if (productSelect === undefined) return;
- let stock = productSelect.stock || 0;
- let num = this.attr.productSelect;
- if (changeValue) {
- num.cart_num++;
- if (num.cart_num > stock) {
- this.$set(this.attr.productSelect, 'cart_num', stock ? stock : 1);
- this.$set(this, 'cart_num', stock ? stock : 1);
- }
- } else {
- num.cart_num--;
- if (num.cart_num < 1) {
- this.$set(this.attr.productSelect, 'cart_num', 1);
- this.$set(this, 'cart_num', 1);
- }
- }
- },
- /**
- * 购物车手动填写
- *
- */
- iptCartNum: function (e) {
- this.$set(this.attr.productSelect, 'cart_num', e);
- },
- subDel: function (event) {
- let that = this,
- selectValue = that.selectValue;
- if (selectValue.length > 0)
- cartDel(selectValue).then((res) => {
- that.loadend = false;
- that.page = 1;
- that.cartList.valid = [];
- that.getCartList();
- that.getCartNum();
- });
- else
- return that.$util.Tips({
- title: that.$t(`请选择产品`)
- });
- },
- getSelectValueProductId: function () {
- let that = this;
- let validList = that.cartList.valid;
- let selectValue = that.selectValue;
- let productId = [];
- if (selectValue.length > 0) {
- for (let index in validList) {
- if (that.inArray(validList[index].id, selectValue)) {
- productId.push(validList[index].product_id);
- }
- }
- }
- return productId;
- },
- subCollect: function (event) {
- let that = this,
- selectValue = that.selectValue;
- if (selectValue.length > 0) {
- let selectValueProductId = that.getSelectValueProductId();
- collectAll(that.getSelectValueProductId().join(','))
- .then((res) => {
- return that.$util.Tips({
- title: res.msg,
- icon: 'success'
- });
- })
- .catch((err) => {
- return that.$util.Tips({
- title: err
- });
- });
- } else {
- return that.$util.Tips({
- title: that.$t(`请选择产品`)
- });
- }
- },
- subOrder(event) {
- let that = this,
- selectValue = that.selectValue;
- if (selectValue.length > 0) {
- uni.navigateTo({
- url: '/pages/goods/order_confirm/index?cartId=' + selectValue.join(',')
- });
- } else {
- return that.$util.Tips({
- title: that.$t(`请选择产品`)
- });
- }
- },
- checkboxAllChange: function (event) {
- let value = event.detail.value;
- if (value.length > 0) {
- this.setAllSelectValue(1);
- } else {
- this.setAllSelectValue(0);
- }
- },
- setAllSelectValue: function (status) {
- let that = this;
- let selectValue = [];
- let valid = that.cartList.valid;
- if (valid.length > 0) {
- let newValid = valid.map((item) => {
- if (status) {
- if (that.footerswitch) {
- if (item.attrStatus) {
- item.checked = true;
- selectValue.push(item.id);
- } else {
- item.checked = false;
- }
- } else {
- item.checked = true;
- selectValue.push(item.id);
- }
- that.isAllSelect = true;
- } else {
- item.checked = false;
- that.isAllSelect = false;
- }
- return item;
- });
- that.$set(that.cartList, 'valid', newValid);
- that.selectValue = selectValue;
- that.switchSelect();
- }
- },
- checkboxChange: function (event) {
- let that = this;
- let value = event.detail.value;
- let valid = that.cartList.valid;
- let arr1 = [];
- let arr2 = [];
- let arr3 = [];
- let newValid = valid.map((item) => {
- if (that.inArray(item.id, value)) {
- if (that.footerswitch) {
- if (item.attrStatus) {
- item.checked = true;
- arr1.push(item);
- } else {
- item.checked = false;
- }
- } else {
- item.checked = true;
- arr1.push(item);
- }
- } else {
- item.checked = false;
- arr2.push(item);
- }
- return item;
- });
- if (that.footerswitch) {
- arr3 = arr2.filter((item) => !item.attrStatus);
- }
- // for (let index in valid) {
- // if (that.inArray(valid[index].id, value)){
- // if(valid[index].attrStatus){
- // valid[index].checked = true;
- // }else{
- // valid[index].checked = false;
- // }
- // } else {
- // valid[index].checked = false;
- // }
- // }
- that.$set(that.cartList, 'valid', newValid);
- // let newArr = that.cartList.valid.filter(item => item.attrStatus);
- that.isAllSelect = newValid.length === arr1.length + arr3.length;
- that.selectValue = value;
- that.switchSelect();
- },
- inArray: function (search, array) {
- for (let i in array) {
- if (array[i] == search) {
- return true;
- }
- }
- return false;
- },
- switchSelect: function () {
- let that = this;
- let validList = that.cartList.valid;
- let selectValue = that.selectValue;
- let selectCountPrice = 0.0;
- if (selectValue.length < 1) {
- that.selectCountPrice = selectCountPrice;
- } else {
- for (let index in validList) {
- if (that.inArray(validList[index].id, selectValue)) {
- selectCountPrice = that.$util.$h.Add(selectCountPrice, that.$util.$h.Mul(validList[index].cart_num, validList[index].truePrice));
- }
- }
- that.selectCountPrice = selectCountPrice;
- }
- },
- /**
- * 购物车手动填写
- *
- */
- iptCartNum: function (index) {
- let item = this.cartList.valid[index];
- console.log(item.cart_num,'22')
- if (item.cart_num) {
- this.setCartNum(item.id, item.cart_num);
- }
- if (!item.cart_num) {
- item.cart_num = 1;
- }
- this.switchSelect();
- },
- blurInput: function (index) {
- let item = this.cartList.valid[index];
- if (!item.cart_num) {
- item.cart_num = 1;
- this.$set(this.cartList, 'valid', this.cartList.valid);
- }
- console.log(this.cartList.valid)
- },
- subCart: function (index) {
- let that = this;
- if (this.disabledChangeNumber) return;
- let status = false;
- let item = that.cartList.valid[index];
- item.cart_num = Number(item.cart_num) - 1;
- if (item.cart_num < 1) status = true;
- if (item.cart_num <= 1) {
- item.cart_num = 1;
- item.numSub = true;
- } else {
- item.numSub = false;
- item.numAdd = false;
- }
- if (false == status) {
- that.setCartNum(
- item.id,
- item.cart_num,
- function (data) {
- that.cartList.valid[index] = item;
- that.getCartNum();
- that.switchSelect();
- },
- () => {
- item.cart_num = Number(item.cart_num) + 1;
- }
- );
- }
- },
- addCart: function (index) {
- let that = this;
- if (this.adding) return;
- if (this.disabledChangeNumber) return;
- let item = that.cartList.valid[index];
- item.cart_num = Number(item.cart_num) + 1;
- let productInfo = item.productInfo;
- if (productInfo.hasOwnProperty('attrInfo') && item.cart_num >= item.productInfo.attrInfo.stock) {
- item.cart_num = item.productInfo.attrInfo.stock;
- item.numAdd = true;
- item.numSub = false;
- } else {
- item.numAdd = false;
- item.numSub = false;
- }
- Throttle(
- that.setCartNum(
- item.id,
- item.cart_num,
- (data) => {
- that.cartList.valid[index] = item;
- that.getCartNum();
- that.switchSelect();
- },
- () => {
- item.cart_num = Number(item.cart_num) - 1;
- }
- ),
- 3000
- );
- },
- setCartNum(cartId, cartNum, successCallback, errorCallback) {
- let that = this;
- if (this.disabledChangeNumber) return;
- this.disabledChangeNumber = true;
- changeCartNum(cartId, cartNum)
- .then((res) => {
- successCallback && successCallback(res.data);
- })
- .catch((err) => {
- errorCallback && errorCallback();
- return that.$util.Tips({
- title: err
- });
- })
- .finally((e) => {
- setTimeout((e) => {
- this.disabledChangeNumber = false;
- }, DEBOUNCETIME);
- });
- },
- getCartNum: function () {
- let that = this;
- getCartCounts().then((res) => {
- that.cartCount = res.data.count;
- this.adding = false;
- this.$store.commit('indexData/setCartNum', res.data.count > 99 ? '..' : res.data.count);
- if (res.data.count > 0) {
- wx.setTabBarBadge({
- index: 2,
- text: res.data.count + ''
- });
- } else {
- wx.hideTabBarRedDot({
- index: 2
- });
- }
- });
- },
- getCartData(data) {
- return new Promise((resolve, reject) => {
- getCartList(data)
- .then((res) => {
- resolve(res.data);
- })
- .catch((err) => {
- this.loading = false;
- this.canShow = true;
- this.$util.Tips({
- title: err
- });
- });
- });
- },
- async getCartList(init) {
- uni.showLoading({
- title: this.$t(`加载中`),
- mask: true
- });
- let that = this;
- let data = {
- page: that.page,
- limit: that.limit,
- status: 1
- };
- getCartCounts().then(async (c) => {
- that.cartCount = c.data.count;
- if (init) {
- this.adding = false;
- this.$store.commit('indexData/setCartNum', c.data.count > 99 ? '..' : c.data.count);
- if (c.data.count > 0) {
- wx.setTabBarBadge({
- index: 2,
- text: c.data.count + ''
- });
- } else {
- wx.hideTabBarRedDot({
- index: 2
- });
- }
- }
- for (let i = 0; i < Math.ceil(c.data.ids.length / that.limit); i++) {
- let cartList = await this.getCartData(data);
- data.page = data.page + 1;
- let valid = cartList.valid;
- let validList = that.$util.SplitArray(valid, that.cartList.valid);
- let numSub = [
- {
- numSub: true
- },
- {
- numSub: false
- }
- ];
- let numAdd = [
- {
- numAdd: true
- },
- {
- numAdd: false
- }
- ],
- selectValue = [];
- if (validList.length > 0) {
- for (let index in validList) {
- if (validList[index].cart_num == 1) {
- validList[index].numSub = true;
- } else {
- validList[index].numSub = false;
- }
- let productInfo = validList[index].productInfo;
- if (productInfo.hasOwnProperty('attrInfo') && validList[index].cart_num == validList[index].productInfo.attrInfo.stock) {
- validList[index].numAdd = true;
- } else if (validList[index].cart_num == validList[index].productInfo.stock) {
- validList[index].numAdd = true;
- } else {
- validList[index].numAdd = false;
- }
- if (validList[index].attrStatus) {
- validList[index].checked = true;
- selectValue.push(validList[index].id);
- } else {
- validList[index].checked = false;
- }
- }
- }
- that.$set(that.cartList, 'valid', validList);
- // that.goodsHidden = cartList.valid.length <= 0 ? false : true;
- that.selectValue = selectValue;
- let newArr = validList.filter((item) => item.attrStatus);
- that.isAllSelect = newArr.length == selectValue.length && newArr.length;
- that.switchSelect();
- }
- that.loading = false;
- this.canShow = true;
- uni.hideLoading();
- });
- },
- getInvalidList: function () {
- let that = this;
- if (this.loadendInvalid) return false;
- if (this.loadingInvalid) return false;
- let data = {
- page: that.pageInvalid,
- limit: that.limitInvalid,
- status: 0
- };
- getCartList(data)
- .then((res) => {
- let cartList = res.data,
- invalid = cartList.invalid,
- loadendInvalid = invalid.length < that.limitInvalid;
- let invalidList = that.$util.SplitArray(invalid, that.cartList.invalid);
- that.$set(that.cartList, 'invalid', invalidList);
- that.loadendInvalid = loadendInvalid;
- that.loadTitleInvalid = loadendInvalid ? that.$t(`我也是有底线的`) : that.$t(`加载更多`);
- that.pageInvalid = that.pageInvalid + 1;
- that.loadingInvalid = false;
- })
- .catch((res) => {
- that.loadingInvalid = false;
- that.loadTitleInvalid = that.$t(`加载更多`);
- });
- },
- getHostProduct: function () {
- let that = this;
- if (that.hotScroll) return;
- getProductHot(that.hotPage, that.hotLimit).then((res) => {
- that.hotPage++;
- that.hotScroll = res.data.length < that.hotLimit;
- that.hostProduct = that.hostProduct.concat(res.data);
- });
- },
- goodsOpen: function () {
- let that = this;
- that.goodsHidden = !that.goodsHidden;
- },
- goRouter(item) {
- var pages = getCurrentPages();
- var page = pages[pages.length - 1].$page.fullPath;
- if (item.link == page) return;
- uni.switchTab({
- url: item.link,
- fail(err) {
- uni.redirectTo({
- url: item.link
- });
- }
- });
- },
- manage: function () {
- let that = this;
- that.footerswitch = !that.footerswitch;
- let arr1 = [];
- let arr2 = [];
- let newValid = that.cartList.valid.map((item) => {
- if (that.footerswitch) {
- if (item.attrStatus) {
- if (item.checked) {
- arr1.push(item.id);
- }
- } else {
- item.checked = false;
- arr2.push(item);
- }
- } else {
- if (item.checked) {
- arr1.push(item.id);
- }
- }
- return item;
- });
- that.cartList.valid = newValid;
- if (that.footerswitch) {
- that.isAllSelect = newValid.length === arr1.length + arr2.length;
- } else {
- that.isAllSelect = newValid.length === arr1.length;
- }
- that.selectValue = arr1;
- that.switchSelect();
- },
- unsetCart: function () {
- let that = this,
- ids = [];
- for (let i = 0, len = that.cartList.invalid.length; i < len; i++) {
- ids.push(that.cartList.invalid[i].id);
- }
- cartDel(ids)
- .then((res) => {
- that.$util.Tips({
- title: that.$t(`清除成功`)
- });
- that.$set(that.cartList, 'invalid', []);
- that.getCartNum();
- })
- .catch((res) => {});
- }
- },
- onReachBottom() {
- let that = this;
- if (that.loadend) {
- that.getInvalidList();
- }
- if (that.cartList.valid.length == 0 && that.cartList.invalid.length == 0) {
- that.getHostProduct();
- }
- },
- // 滚动监听
- onPageScroll(e) {
- // 传入scrollTop值并触发所有easy-loadimage组件下的滚动监听事件
- uni.$emit('scroll');
- }
- };
- </script>
- <style scoped lang="scss">
- .shoppingCart {
- /* #ifdef H5 */
- // padding-bottom: 0;
- // padding-bottom: constant(safe-area-inset-bottom);
- // padding-bottom: env(safe-area-inset-bottom);
- /* #endif */
- }
- .shoppingCart .labelNav {
- height: 76rpx;
- padding: 0 30rpx;
- font-size: 22rpx;
- color: #8c8c8c;
- position: fixed;
- left: 0;
- width: 100%;
- box-sizing: border-box;
- background-color: #f5f5f5;
- z-index: 5;
- top: 0;
- }
- .shoppingCart .labelNav .item .iconfont {
- font-size: 25rpx;
- margin-right: 10rpx;
- }
- .shoppingCart .nav {
- width: 100%;
- height: 80rpx;
- background-color: #fff;
- padding: 0 30rpx;
- box-sizing: border-box;
- font-size: 28rpx;
- color: #282828;
- position: fixed;
- left: 0;
- z-index: 5;
- top: 76rpx;
- }
- .shoppingCart .nav .num {
- margin-left: 12rpx;
- }
- .shoppingCart .nav .administrate {
- font-size: 26rpx;
- color: #282828;
- width: 110rpx;
- height: 46rpx;
- border-radius: 6rpx;
- border: 1px solid #a4a4a4;
- }
- .shoppingCart .noCart {
- margin-top: 171rpx;
- background-color: #fff;
- padding-top: 0.1rpx;
- }
- .shoppingCart .noCart .pictrue {
- width: 414rpx;
- height: 336rpx;
- margin: 78rpx auto 56rpx auto;
- }
- .shoppingCart .noCart .pictrue image {
- width: 100%;
- height: 100%;
- }
- .shoppingCart .list {
- margin-top: 171rpx;
- }
- .shoppingCart .list .item {
- padding: 25rpx 30rpx;
- background-color: #fff;
- margin-bottom: 15rpx;
- }
- .shoppingCart .list .item .picTxt {
- width: 627rpx;
- position: relative;
- }
- .shoppingCart .list .item .picTxt .pictrue {
- width: 160rpx;
- height: 160rpx;
- }
- .shoppingCart .list .item .picTxt .pictrue image {
- width: 100%;
- height: 100%;
- border-radius: 6rpx;
- }
- .shoppingCart .list .item .picTxt .text {
- width: 444rpx;
- font-size: 28rpx;
- color: #282828;
- }
- .shoppingCart .list .item .picTxt .text .reColor {
- color: #999;
- }
- .shoppingCart .list .item .picTxt .text .reElection {
- margin-top: 20rpx;
- }
- .shoppingCart .list .item .picTxt .text .reElection .title {
- font-size: 24rpx;
- }
- .shoppingCart .list .item .picTxt .text .reElection .reBnt {
- // width: 120rpx;
- padding: 0 10rpx;
- // height: 46rpx;
- margin-top: 6rpx;
- border-radius: 23rpx;
- font-size: 26rpx;
- }
- .shoppingCart .list .item .picTxt .text .infor {
- font-size: 24rpx;
- color: #868686;
- margin-top: 16rpx;
- }
- .shoppingCart .list .item .picTxt .text .money {
- font-size: 32rpx;
- color: var(--view-theme);
- margin-top: 28rpx;
- }
- .shoppingCart .list .item .picTxt .carnum {
- height: 47rpx;
- position: absolute;
- bottom: 0rpx;
- right: 0;
- }
- .shoppingCart .list .item .picTxt .carnum view {
- border: 1rpx solid #a4a4a4;
- width: 66rpx;
- text-align: center;
- height: 100%;
- line-height: 40rpx;
- font-size: 28rpx;
- color: #a4a4a4;
- }
- .shoppingCart .list .item .picTxt .carnum .reduce {
- border-right: 0;
- border-radius: 3rpx 0 0 3rpx;
- }
- .shoppingCart .list .item .picTxt .carnum .reduce.on {
- border-color: #e3e3e3;
- color: #dedede;
- }
- .shoppingCart .list .item .picTxt .carnum .plus {
- border-left: 0;
- border-radius: 0 3rpx 3rpx 0;
- }
- .shoppingCart .list .item .picTxt .carnum .plus.on {
- border-color: #e3e3e3;
- color: #dedede;
- }
- .shoppingCart .list .item .picTxt .carnum .num {
- color: #282828;
- }
- .shoppingCart .invalidGoods {
- background-color: #fff;
- }
- .shoppingCart .invalidGoods .goodsNav {
- width: 100%;
- height: 66rpx;
- padding: 0 30rpx;
- box-sizing: border-box;
- font-size: 28rpx;
- color: #282828;
- }
- .shoppingCart .invalidGoods .goodsNav .iconfont {
- color: #424242;
- font-size: 28rpx;
- margin-right: 17rpx;
- }
- .shoppingCart .invalidGoods .goodsNav .del {
- font-size: 26rpx;
- color: #999;
- }
- .shoppingCart .invalidGoods .goodsNav .del .icon-shanchu1 {
- color: #999;
- font-size: 33rpx;
- vertical-align: -2rpx;
- margin-right: 8rpx;
- }
- .shoppingCart .invalidGoods .goodsList .item {
- padding: 20rpx 30rpx;
- border-top: 1rpx solid #f5f5f5;
- }
- .shoppingCart .invalidGoods .goodsList .item .invalid {
- font-size: 22rpx;
- color: #fff;
- width: 70rpx;
- height: 36rpx;
- background-color: #aaa;
- border-radius: 3rpx;
- text-align: center;
- line-height: 36rpx;
- }
- .shoppingCart .invalidGoods .goodsList .item .pictrue {
- width: 140rpx;
- height: 140rpx;
- }
- .shoppingCart .invalidGoods .goodsList .item .pictrue image {
- width: 100%;
- height: 100%;
- border-radius: 6rpx;
- }
- .shoppingCart .invalidGoods .goodsList .item .text {
- width: 433rpx;
- font-size: 28rpx;
- color: #999;
- height: 140rpx;
- }
- .shoppingCart .invalidGoods .goodsList .item .text .name {
- width: 100%;
- }
- .shoppingCart .invalidGoods .goodsList .item .text .infor {
- font-size: 24rpx;
- }
- .shoppingCart .invalidGoods .goodsList .item .text .end {
- font-size: 26rpx;
- color: #bbb;
- }
- .shoppingCart .footer {
- z-index: 999;
- width: 100%;
- height: 96rpx;
- background-color: rgba(255, 255, 255, 0.85);
- backdrop-filter: blur(10px);
- position: fixed;
- padding: 0 30rpx;
- box-sizing: border-box;
- border-top: 1rpx solid #eee;
- bottom: 98rpx;
- bottom: calc(98rpx + constant(safe-area-inset-bottom)); ///兼容 IOS<11.2/
- bottom: calc(98rpx + env(safe-area-inset-bottom)); ///兼容 IOS>11.2/
- }
- .shoppingCart .footer.on {
- // #ifndef H5
- bottom: 0rpx;
- // #endif
- }
- .shoppingCart .footer .checkAll {
- font-size: 28rpx;
- color: #282828;
- margin-left: 16rpx;
- }
- // .shoppingCart .footer checkbox .wx-checkbox-input{background-color:#fafafa;}
- .shoppingCart .footer .money {
- font-size: 30rpx;
- }
- .shoppingCart .footer .placeOrder {
- color: #fff;
- font-size: 30rpx;
- width: 226rpx;
- height: 70rpx;
- border-radius: 50rpx;
- text-align: center;
- line-height: 70rpx;
- margin-left: 22rpx;
- }
- .shoppingCart .footer .button .bnt {
- font-size: 28rpx;
- color: #999;
- border-radius: 50rpx;
- border: 1px solid #999;
- width: 160rpx;
- height: 60rpx;
- text-align: center;
- line-height: 60rpx;
- }
- .shoppingCart .footer .button form ~ form {
- margin-left: 17rpx;
- }
- .uni-p-b-96 {
- height: 96rpx;
- }
- .uni-p-b-98 {
- height: 100rpx;
- /* 兼容 IOS<11.2 */
- height: calc(100rpx + constant(safe-area-inset-bottom));
- /* 兼容 IOS>11.2 */
- height: calc(100rpx + env(safe-area-inset-bottom));
- }
- .emptyBox {
- text-align: center;
- padding: 80rpx 0;
- .tips {
- color: #aaa;
- font-size: 26rpx;
- }
- image {
- width: 414rpx;
- height: 304rpx;
- }
- }
- </style>
|