|
@@ -21,11 +21,8 @@
|
|
|
<div class="box" :class="{ selected: item.id == radioV }">
|
|
|
<img :src="item.img" alt="" />
|
|
|
<p>{{ item.name }}</p>
|
|
|
- <span
|
|
|
- >可用库存:{{ item.stock }}{{ item.unit }}/{{
|
|
|
- item.weight
|
|
|
- }}kg</span
|
|
|
- >
|
|
|
+ <span>库存:{{ item.stock }}{{ item.unit }}</span>
|
|
|
+ <span style="margin-left:0px; float:right;" v-if="type == 'active1'">{{ item.good_desc}}</span>
|
|
|
</div>
|
|
|
</li>
|
|
|
</ul>
|
|
@@ -48,8 +45,7 @@
|
|
|
</div>
|
|
|
<div class="product-footer clear">
|
|
|
<div class="fl">
|
|
|
-
|
|
|
- <input-number :numb="num" :max="stock" @backNum="backNum" />
|
|
|
+ <input-number :numb="num" :max="stock" @backNum="backNum" />
|
|
|
</div>
|
|
|
<div>
|
|
|
<van-button type="info" class="fr" @click="placeOrder"
|
|
@@ -69,6 +65,8 @@ export default {
|
|
|
mixins: [resToken],
|
|
|
data() {
|
|
|
return {
|
|
|
+ type:null,
|
|
|
+
|
|
|
addrAdd: require("@/assets/images/active1/product/add.png"), //用户头像
|
|
|
bgImg: require("@/assets/images/active1/product/bgImg.png"), //用户头像
|
|
|
tags: require("@/assets/images/active1/product/tags.png"), //用户头像
|
|
@@ -89,6 +87,10 @@ export default {
|
|
|
isce: "",
|
|
|
};
|
|
|
},
|
|
|
+ created(){
|
|
|
+ this.type = this.$store.getters.type;
|
|
|
+
|
|
|
+ },
|
|
|
mounted() {
|
|
|
this.ad = getAd() ? JSON.parse(getAd()) : {};
|
|
|
this.num = isNaN(getGoodsNum()) ? 0 : parseInt(getGoodsNum());
|
|
@@ -110,7 +112,6 @@ export default {
|
|
|
}
|
|
|
},
|
|
|
async getaddress() {
|
|
|
-
|
|
|
let numRes = await this.set_user_goodsNum(this.num);
|
|
|
let unitRes = await this.set_user_goodsUnit(this.radioV);
|
|
|
if (numRes && numRes.code === 0 && unitRes && unitRes.code === 0) {
|
|
@@ -132,8 +133,8 @@ export default {
|
|
|
}
|
|
|
this.canStockBag = res.data.stock;
|
|
|
this.canStockBox = res.data.stock;
|
|
|
-
|
|
|
- console.log(limit)
|
|
|
+
|
|
|
+ console.log(limit);
|
|
|
this.distributeGoods(limit);
|
|
|
// await this.getUnitist(limit);
|
|
|
this.total = parseInt(stock + "");
|
|
@@ -169,6 +170,7 @@ export default {
|
|
|
|
|
|
stock: parseInt(v1.limit_num + ""),
|
|
|
weight: v1.weight,
|
|
|
+ good_desc:v1.good_desc,
|
|
|
unit: v1.name,
|
|
|
};
|
|
|
this.productList.push(item);
|
|
@@ -266,7 +268,7 @@ export default {
|
|
|
</script>
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
- @import "../../assets/css/_handle.scss";
|
|
|
+@import "../../assets/css/_handle.scss";
|
|
|
|
|
|
.product {
|
|
|
@include background("bd_product");
|
|
@@ -333,14 +335,16 @@ export default {
|
|
|
.productPack {
|
|
|
width: 100%;
|
|
|
// .packageBox {
|
|
|
- // display: flex;
|
|
|
- // justify-content: space-between;
|
|
|
+ // display: flex;
|
|
|
+ // justify-content: space-between;
|
|
|
// }
|
|
|
|
|
|
li {
|
|
|
list-style: none;
|
|
|
float: right;
|
|
|
- width: calc(50% - 5px);
|
|
|
+ // width: calc(50% - 5px);
|
|
|
+
|
|
|
+ @include wd("wd_product_con");
|
|
|
// display: inline-block;
|
|
|
// padding: 5px;
|
|
|
&:last-child {
|
|
@@ -348,7 +352,7 @@ export default {
|
|
|
}
|
|
|
.box {
|
|
|
background: #e6e6dc;
|
|
|
- // @include background("bd_product_packbox");
|
|
|
+ // @include background("bd_product_packbox");
|
|
|
|
|
|
border-radius: 13px;
|
|
|
padding: 5px 5px 10px 5px;
|
|
@@ -438,7 +442,7 @@ export default {
|
|
|
position: fixed;
|
|
|
width: 100%;
|
|
|
// background: #e6e6dc;
|
|
|
- @include background("bd_product_footer");
|
|
|
+ @include background("bd_product_footer");
|
|
|
|
|
|
left: 0;
|
|
|
bottom: 50px;
|
|
@@ -451,8 +455,8 @@ export default {
|
|
|
}
|
|
|
button {
|
|
|
// background: #e6e6dc;
|
|
|
- @include background("bd_product_footerBtn");
|
|
|
- @include font_color("font_product_footerBtn");
|
|
|
+ @include background("bd_product_footerBtn");
|
|
|
+ @include font_color("font_product_footerBtn");
|
|
|
|
|
|
color: #292929;
|
|
|
padding: 0;
|