|
|
@ -110,9 +110,11 @@ export default { |
|
|
|
} |
|
|
|
} |
|
|
|
}, |
|
|
|
}, |
|
|
|
toProduct (item) { |
|
|
|
toProduct (item) { |
|
|
|
// 未过期 |
|
|
|
|
|
|
|
if (item.isInEffect) { |
|
|
|
|
|
|
|
const links = item.nonAssociatedLinks |
|
|
|
const links = item.nonAssociatedLinks |
|
|
|
|
|
|
|
// 已过期 / 没有cid并且没有链接,则跳转到产品详情 |
|
|
|
|
|
|
|
if (!item.isInEffect || (!item.cid && !links)) { |
|
|
|
|
|
|
|
this.$router.push(`/product/show?id=${item.mallId}`) |
|
|
|
|
|
|
|
} else { |
|
|
|
// 有链接 |
|
|
|
// 有链接 |
|
|
|
if (links && links.length) { |
|
|
|
if (links && links.length) { |
|
|
|
if (links.length === 1) { |
|
|
|
if (links.length === 1) { |
|
|
@ -122,11 +124,8 @@ export default { |
|
|
|
this.links = item.nonAssociatedLinks |
|
|
|
this.links = item.nonAssociatedLinks |
|
|
|
} |
|
|
|
} |
|
|
|
} else { |
|
|
|
} else { |
|
|
|
this.$router.push(`/station/preview?courseId=${item.cid}&curriculumName=${item.goodsName}&mallId=${item.mallId || ''}&keyword=${this.keyword}&active=${this.active}`) |
|
|
|
this.$router.push(`/station/preview?courseId=${item.cid || ''}&curriculumName=${item.goodsName}&mallId=${item.mallId || ''}&keyword=${this.keyword}&active=${this.active}`) |
|
|
|
} |
|
|
|
} |
|
|
|
} else { |
|
|
|
|
|
|
|
// 续费 |
|
|
|
|
|
|
|
this.$router.push(`/product/show?id=${item.mallId}`) |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
}, |
|
|
|
}, |
|
|
|
// tab切换 |
|
|
|
// tab切换 |
|
|
|