提交 d17fa9d2 编写于 作者: guangjun.yang's avatar guangjun.yang

去掉默认值等

上级 9ddc7c9d
...@@ -236,7 +236,7 @@ export default { ...@@ -236,7 +236,7 @@ export default {
component_tag: `506#50602#${item.couponId}#${item.couponName}` component_tag: `506#50602#${item.couponId}#${item.couponName}`
}); });
} }
// 去使用
if (item.couponStatus == 1) { if (item.couponStatus == 1) {
let pageUrl = ""; let pageUrl = "";
// 如果适用的商品(卡)个数多于一个,则跳转到商品列表 // 如果适用的商品(卡)个数多于一个,则跳转到商品列表
...@@ -246,6 +246,7 @@ export default { ...@@ -246,6 +246,7 @@ export default {
} else { } else {
item.couponMappingModelList.length && this.getCardInfoByProvinceId(item); item.couponMappingModelList.length && this.getCardInfoByProvinceId(item);
} }
// 立即领取
} else { } else {
this.receiveCouponByid(item.couponId); this.receiveCouponByid(item.couponId);
} }
...@@ -264,10 +265,14 @@ export default { ...@@ -264,10 +265,14 @@ export default {
this.POST("trade/goods/cardList_v2", param).then(res => { this.POST("trade/goods/cardList_v2", param).then(res => {
if (res.code == "000000") { if (res.code == "000000") {
let good = (res.data && res.data[0]) || { id: '', name: "职称考精讲课程卡" }; let good = (res.data && res.data[0]) || { id: '', name: "职称考精讲课程卡" };
let pageUrl = getWebPageUrl( if(good.id) {
`profexam/#/goods-detail?goodsId=${good.id}` let pageUrl = getWebPageUrl(
); `profexam/#/goods-detail?goodsId=${good.id}`
this.jumpForCoupon(pageUrl); );
this.jumpForCoupon(pageUrl);
} else {
Toast("相关商品已下架");
}
} }
}); });
}, },
......
...@@ -214,7 +214,7 @@ export default { ...@@ -214,7 +214,7 @@ export default {
let href = location.href; let href = location.href;
this.shareUrl = href; this.shareUrl = href;
this.projectId = this.$route.query.projectId; this.projectId = this.$route.query.projectId;
this.goodsId = this.$route.query.goodsId || 74; this.goodsId = this.$route.query.goodsId;
this.courseUrl = this.$route.query.courseUrl || ""; // this.courseUrl = this.$route.query.courseUrl || ""; //
this.shareUrl = getWebPageUrl( this.shareUrl = getWebPageUrl(
`profexam/#/goods-detail?goodsId=${this.goodsId}` `profexam/#/goods-detail?goodsId=${this.goodsId}`
...@@ -451,6 +451,9 @@ export default { ...@@ -451,6 +451,9 @@ export default {
// 获取商品信息 // 获取商品信息
getGoodsInfo() { getGoodsInfo() {
if(!this.goodsId) {
return;
}
this.commonCheckToken(() => { this.commonCheckToken(() => {
this.GET(`trade/goods/goodInfoV3/${this.goodsId}`, {}).then(res => { this.GET(`trade/goods/goodInfoV3/${this.goodsId}`, {}).then(res => {
if (res.code == "000000") { if (res.code == "000000") {
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册