Commit 5787d981cf53329c48a982306c35c33fca5bf24f
1 parent
aa34d58e
购好物,新版店铺首页天剑特殊处理,id = 3时,App外直接可以购买商品,不做拉起App拦截~
Showing
2 changed files
with
4 additions
and
4 deletions
src/pages/actList/actList.vue
| ... | ... | @@ -526,7 +526,7 @@ |
| 526 | 526 | swiperJump(item) { |
| 527 | 527 | |
| 528 | 528 | // 判断在App内 |
| 529 | - if (this.isCNLive.value) { | |
| 529 | + if (this.isCNLive.value || this.$route.query.id == '3') { | |
| 530 | 530 | |
| 531 | 531 | // 判断通用跳转函数是否存在 |
| 532 | 532 | if (typeof this.$parent.gotoDetail === 'function') { |
| ... | ... | @@ -581,7 +581,7 @@ |
| 581 | 581 | toDetail(item) { |
| 582 | 582 | |
| 583 | 583 | // 判断在App内 |
| 584 | - if (this.isCNLive.value) { | |
| 584 | + if (this.isCNLive.value || this.$route.query.id == '3') { | |
| 585 | 585 | |
| 586 | 586 | // 判断通用跳转函数是否存在 |
| 587 | 587 | if (typeof this.$parent.gotoDetail === 'function') { | ... | ... |
src/pages/welfareList/welfareList.vue
| ... | ... | @@ -526,7 +526,7 @@ |
| 526 | 526 | swiperJump(item) { |
| 527 | 527 | |
| 528 | 528 | // 判断在App内 |
| 529 | - if (this.isCNLive.value) { | |
| 529 | + if (this.isCNLive.value || this.$route.query.id == '3') { | |
| 530 | 530 | |
| 531 | 531 | // 判断通用跳转函数是否存在 |
| 532 | 532 | if (typeof this.$parent.gotoDetail === 'function') { |
| ... | ... | @@ -581,7 +581,7 @@ |
| 581 | 581 | toDetail(item) { |
| 582 | 582 | |
| 583 | 583 | // 判断在App内 |
| 584 | - if (this.isCNLive.value) { | |
| 584 | + if (this.isCNLive.value || this.$route.query.id == '3') { | |
| 585 | 585 | |
| 586 | 586 | // 判断通用跳转函数是否存在 |
| 587 | 587 | if (typeof this.$parent.gotoDetail === 'function') { | ... | ... |