修改直播价格展示信息错误
parent
49d023cef0
commit
32b29f45e7
|
@ -200,8 +200,8 @@
|
||||||
{{ row.price | unitPrice("¥") }}至{{ row.price2 | unitPrice("¥") }}
|
{{ row.price | unitPrice("¥") }}至{{ row.price2 | unitPrice("¥") }}
|
||||||
</div>
|
</div>
|
||||||
<div v-if="row.priceType == 3">
|
<div v-if="row.priceType == 3">
|
||||||
{{ row.price | unitPrice("¥")
|
{{ row.price2 | unitPrice("¥")
|
||||||
}}<span class="original-price">{{ row.price2 | unitPrice("¥") }}</span>
|
}}<span class="original-price">{{ row.price | unitPrice("¥") }}</span>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
@ -345,6 +345,7 @@ export default {
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
mounted() {
|
mounted() {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 如果query.id有值说明是查看详情
|
* 如果query.id有值说明是查看详情
|
||||||
* liveStatus 可以判断当前直播状态 从而区分数据 是否是未开始、已开启、已关闭、
|
* liveStatus 可以判断当前直播状态 从而区分数据 是否是未开始、已开启、已关闭、
|
||||||
|
@ -610,7 +611,7 @@ export default {
|
||||||
if (res.success) {
|
if (res.success) {
|
||||||
this.$Message.success("添加成功!");
|
this.$Message.success("添加成功!");
|
||||||
|
|
||||||
this.$router.push({ path: "/promotion/live" });
|
this.$router.push({ path: "/live" });
|
||||||
}
|
}
|
||||||
this.spinShow = false;
|
this.spinShow = false;
|
||||||
});
|
});
|
||||||
|
|
|
@ -55,7 +55,7 @@
|
||||||
<div v-else>
|
<div v-else>
|
||||||
<div v-if="row.priceType == 1">{{row.price | unitPrice('¥')}}</div>
|
<div v-if="row.priceType == 1">{{row.price | unitPrice('¥')}}</div>
|
||||||
<div v-if="row.priceType == 2">{{row.price | unitPrice('¥')}}至{{row.price2 | unitPrice('¥')}}</div>
|
<div v-if="row.priceType == 2">{{row.price | unitPrice('¥')}}至{{row.price2 | unitPrice('¥')}}</div>
|
||||||
<div v-if="row.priceType == 3">{{row.price | unitPrice('¥')}}<span class="original-price">{{row.price2 | unitPrice('¥')}}</span></div>
|
<div v-if="row.priceType == 3">{{row.price2 | unitPrice('¥')}}<span class="original-price">{{row.price | unitPrice('¥')}}</span></div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</template>
|
</template>
|
||||||
|
@ -264,7 +264,7 @@ export default {
|
||||||
async saveLiveGoods() {
|
async saveLiveGoods() {
|
||||||
this.saveGoodsLoading = true;
|
this.saveGoodsLoading = true;
|
||||||
let submit = this.liveGoodsData.map((element) => {
|
let submit = this.liveGoodsData.map((element) => {
|
||||||
console.log(element);
|
|
||||||
return {
|
return {
|
||||||
goodsId: element.goodsId, //商品id
|
goodsId: element.goodsId, //商品id
|
||||||
goodsImage: element.small, //商品图片 最大为 300 * 300
|
goodsImage: element.small, //商品图片 最大为 300 * 300
|
||||||
|
|
Loading…
Reference in New Issue