|
@@ -85,7 +85,7 @@
|
|
>
|
|
>
|
|
<image
|
|
<image
|
|
:src="chid.image"
|
|
:src="chid.image"
|
|
- style="width: 172rpx; height: 172rpx"
|
|
|
|
|
|
+ style="width: 172rpx; height: 172rpx; border-radius: 20rpx"
|
|
mode=""
|
|
mode=""
|
|
>
|
|
>
|
|
</image>
|
|
</image>
|
|
@@ -93,8 +93,13 @@
|
|
><view class="sold"> 商品下架 </view></view
|
|
><view class="sold"> 商品下架 </view></view
|
|
>
|
|
>
|
|
</view>
|
|
</view>
|
|
- <view class="good" style="flex: 1; margin-left: 10rpx">
|
|
|
|
- <view class="goodname">{{ chid.name_cn }}</view>
|
|
|
|
|
|
+ <view
|
|
|
|
+ class="good"
|
|
|
|
+ style="flex: 1; margin-left: 10rpx; width: 65%"
|
|
|
|
+ >
|
|
|
|
+ <view class="goodname" :style="getFontColor(chid.status)">{{
|
|
|
|
+ chid.name_cn
|
|
|
|
+ }}</view>
|
|
<view class="goods" v-if="chid.sku_item.length > 0">{{
|
|
<view class="goods" v-if="chid.sku_item.length > 0">{{
|
|
chid.sku_item[0].item
|
|
chid.sku_item[0].item
|
|
}}</view>
|
|
}}</view>
|
|
@@ -244,6 +249,7 @@ export default {
|
|
},
|
|
},
|
|
],
|
|
],
|
|
tabarheight: "",
|
|
tabarheight: "",
|
|
|
|
+ removeProducts: 0, //已下架的商品数量
|
|
};
|
|
};
|
|
},
|
|
},
|
|
computed: {
|
|
computed: {
|
|
@@ -267,10 +273,15 @@ export default {
|
|
duration: 300, // 滚动动画的时长
|
|
duration: 300, // 滚动动画的时长
|
|
});
|
|
});
|
|
},
|
|
},
|
|
|
|
+ //商品下架之后的商品字体颜色
|
|
|
|
+ getFontColor(status) {
|
|
|
|
+ if (status == "down") {
|
|
|
|
+ return "color:rgba(51, 51, 51, .6)";
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
|
|
//关注商品 or 删除商品
|
|
//关注商品 or 删除商品
|
|
followOrdelete(e) {
|
|
followOrdelete(e) {
|
|
- console.log("调用", e);
|
|
|
|
//关注商品
|
|
//关注商品
|
|
if (e.index == 0) {
|
|
if (e.index == 0) {
|
|
this.goodsList.map((item) => {
|
|
this.goodsList.map((item) => {
|
|
@@ -318,6 +329,17 @@ export default {
|
|
return num;
|
|
return num;
|
|
},
|
|
},
|
|
|
|
|
|
|
|
+ //获取排除下架的商品之后的商品数量
|
|
|
|
+ getNormalGoodsNum(value) {
|
|
|
|
+ let num = 0;
|
|
|
|
+ value.map((item) => {
|
|
|
|
+ if (item.status != "down") {
|
|
|
|
+ num++;
|
|
|
|
+ }
|
|
|
|
+ });
|
|
|
|
+ return num;
|
|
|
|
+ },
|
|
|
|
+
|
|
//修改购物车商品数量
|
|
//修改购物车商品数量
|
|
addOrReduce(n) {
|
|
addOrReduce(n) {
|
|
uni.$u.http
|
|
uni.$u.http
|
|
@@ -335,12 +357,18 @@ export default {
|
|
if (this.checkboxValue1.length == 0) {
|
|
if (this.checkboxValue1.length == 0) {
|
|
//没有数据则直接将选中店铺中的商品存入数组
|
|
//没有数据则直接将选中店铺中的商品存入数组
|
|
value.map((item) => {
|
|
value.map((item) => {
|
|
- this.checkboxValue1.push(item.cart.sku_item_id);
|
|
|
|
|
|
+ //商品下架不得选中
|
|
|
|
+ if (item.status != "down") {
|
|
|
|
+ this.checkboxValue1.push(item.cart.sku_item_id);
|
|
|
|
+ }
|
|
});
|
|
});
|
|
} else {
|
|
} else {
|
|
- if (this.shop(value) > 0 && this.shop(value) == value.length) {
|
|
|
|
|
|
+ if (
|
|
|
|
+ this.shop(value) > 0 &&
|
|
|
|
+ this.shop(value) == this.getNormalGoodsNum(value)
|
|
|
|
+ ) {
|
|
value.map((item) => {
|
|
value.map((item) => {
|
|
- //先判断选中的商品数组中该店铺商品是否已被选中,已被选中则取消选中,未被选中则推入选中状态
|
|
|
|
|
|
+ //先判断选中的商品数组中该店铺商品是否已被选中,已被选中则取消选中
|
|
if (this.checkboxValue1.indexOf(item.cart.sku_item_id) >= 0) {
|
|
if (this.checkboxValue1.indexOf(item.cart.sku_item_id) >= 0) {
|
|
this.checkboxValue1.splice(
|
|
this.checkboxValue1.splice(
|
|
this.checkboxValue1.indexOf(item.cart.sku_item_id),
|
|
this.checkboxValue1.indexOf(item.cart.sku_item_id),
|
|
@@ -349,18 +377,22 @@ export default {
|
|
}
|
|
}
|
|
});
|
|
});
|
|
} else if (
|
|
} else if (
|
|
- (this.shop(value) > 0 && this.shop(value) != value.length) ||
|
|
|
|
|
|
+ (this.shop(value) > 0 &&
|
|
|
|
+ this.shop(value) != this.getNormalGoodsNum(value)) ||
|
|
this.shop(value) == 0
|
|
this.shop(value) == 0
|
|
) {
|
|
) {
|
|
value.map((item) => {
|
|
value.map((item) => {
|
|
- //先判断选中的商品数组中该店铺商品是否已被选中,已被选中则取消选中,未被选中则推入选中状态
|
|
|
|
- if (this.checkboxValue1.indexOf(item.cart.sku_item_id) == -1) {
|
|
|
|
|
|
+ //先判断选中的商品数组中该店铺商品是否已被选中,未被选中则推入选中状态,商品下架不得选中
|
|
|
|
+ if (
|
|
|
|
+ this.checkboxValue1.indexOf(item.cart.sku_item_id) == -1 &&
|
|
|
|
+ item.status != "down"
|
|
|
|
+ ) {
|
|
this.checkboxValue1.push(item.cart.sku_item_id);
|
|
this.checkboxValue1.push(item.cart.sku_item_id);
|
|
}
|
|
}
|
|
});
|
|
});
|
|
}
|
|
}
|
|
}
|
|
}
|
|
- if (this.checkboxValue1.length == this.goodsNum) {
|
|
|
|
|
|
+ if (this.checkboxValue1.length == this.goodsNum - this.removeProducts) {
|
|
this.$refs.tabbar1.cancelAll();
|
|
this.$refs.tabbar1.cancelAll();
|
|
} else {
|
|
} else {
|
|
this.$refs.tabbar1.cancelAll("取消");
|
|
this.$refs.tabbar1.cancelAll("取消");
|
|
@@ -404,20 +436,29 @@ export default {
|
|
});
|
|
});
|
|
});
|
|
});
|
|
//判断是否全部选中
|
|
//判断是否全部选中
|
|
- if (this.checkboxValue1.length == this.goodsNum && this.goodsNum != 0) {
|
|
|
|
|
|
+ if (
|
|
|
|
+ this.checkboxValue1.length == this.goodsNum - this.removeProducts &&
|
|
|
|
+ this.goodsNum != 0
|
|
|
|
+ ) {
|
|
this.$refs.tabbar1.cancelAll();
|
|
this.$refs.tabbar1.cancelAll();
|
|
- } else if (this.checkboxValue1.length < this.goodsNum) {
|
|
|
|
|
|
+ } else if (
|
|
|
|
+ this.checkboxValue1.length <
|
|
|
|
+ this.goodsNum - this.removeProducts
|
|
|
|
+ ) {
|
|
this.$refs.tabbar1.cancelAll("取消");
|
|
this.$refs.tabbar1.cancelAll("取消");
|
|
}
|
|
}
|
|
},
|
|
},
|
|
//购物车全选
|
|
//购物车全选
|
|
allSelect() {
|
|
allSelect() {
|
|
const all = this.$refs.tabbar1.cancelAll("全选");
|
|
const all = this.$refs.tabbar1.cancelAll("全选");
|
|
- if (this.checkboxValue1.length == this.goodsNum && all.length == 0) {
|
|
|
|
|
|
+ if (
|
|
|
|
+ this.checkboxValue1.length == this.goodsNum - this.removeProducts &&
|
|
|
|
+ all.length == 0
|
|
|
|
+ ) {
|
|
return;
|
|
return;
|
|
}
|
|
}
|
|
//判断是否已经全选,如已全选,则取消全选
|
|
//判断是否已经全选,如已全选,则取消全选
|
|
- if (this.checkboxValue1.length == this.goodsNum) {
|
|
|
|
|
|
+ if (this.checkboxValue1.length == this.goodsNum - this.removeProducts) {
|
|
this.checkboxValue1 = [];
|
|
this.checkboxValue1 = [];
|
|
this.goodsPrice = 0;
|
|
this.goodsPrice = 0;
|
|
this.goodsWeight = 0;
|
|
this.goodsWeight = 0;
|
|
@@ -425,7 +466,10 @@ export default {
|
|
this.goodsList.map((item) => {
|
|
this.goodsList.map((item) => {
|
|
item.goods.map((items) => {
|
|
item.goods.map((items) => {
|
|
//判断是否有商品已被选中
|
|
//判断是否有商品已被选中
|
|
- if (this.checkboxValue1.indexOf(items.cart.sku_item_id) == -1) {
|
|
|
|
|
|
+ if (
|
|
|
|
+ this.checkboxValue1.indexOf(items.cart.sku_item_id) == -1 &&
|
|
|
|
+ items.status != "down"
|
|
|
|
+ ) {
|
|
this.checkboxValue1.push(items.cart.sku_item_id);
|
|
this.checkboxValue1.push(items.cart.sku_item_id);
|
|
this.goodsWeight +=
|
|
this.goodsWeight +=
|
|
items.sku_item[0].weight * items.cart.goods_num;
|
|
items.sku_item[0].weight * items.cart.goods_num;
|
|
@@ -443,6 +487,11 @@ export default {
|
|
//循环店铺,获取购物车商品数量
|
|
//循环店铺,获取购物车商品数量
|
|
this.goodsList.map((item) => {
|
|
this.goodsList.map((item) => {
|
|
this.goodsNum += item.goods.length;
|
|
this.goodsNum += item.goods.length;
|
|
|
|
+ item.goods.map((items) => {
|
|
|
|
+ if (items.status == "down") {
|
|
|
|
+ this.removeProducts++;
|
|
|
|
+ }
|
|
|
|
+ });
|
|
});
|
|
});
|
|
});
|
|
});
|
|
},
|
|
},
|
|
@@ -718,6 +767,10 @@ export default {
|
|
line-height: 40rpx;
|
|
line-height: 40rpx;
|
|
text-align: left;
|
|
text-align: left;
|
|
font-style: normal;
|
|
font-style: normal;
|
|
|
|
+ overflow: hidden;
|
|
|
|
+ text-overflow: ellipsis;
|
|
|
|
+ white-space: nowrap;
|
|
|
|
+ width: 100%;
|
|
}
|
|
}
|
|
|
|
|
|
.shopname {
|
|
.shopname {
|
|
@@ -760,8 +813,10 @@ export default {
|
|
top: 0;
|
|
top: 0;
|
|
left: 0;
|
|
left: 0;
|
|
background-color: #c7c7c7;
|
|
background-color: #c7c7c7;
|
|
- opacity: 0.2;
|
|
|
|
|
|
+ opacity: 0.7;
|
|
width: 100%;
|
|
width: 100%;
|
|
height: 100%;
|
|
height: 100%;
|
|
|
|
+ z-index: 10000;
|
|
|
|
+ border-radius: 20rpx;
|
|
}
|
|
}
|
|
</style>
|
|
</style>
|