|
@@ -722,12 +722,13 @@ export default {
|
|
|
break;
|
|
|
case 2:
|
|
|
// 跳转
|
|
|
- if (this.$store.state.IsPC) {
|
|
|
- let openUrl = item.pc_url ? item.pc_url : item.url;
|
|
|
- window.open(openUrl, "_blank");
|
|
|
- } else {
|
|
|
- window.location.href = item.pc_url ? item.pc_url : item.url;
|
|
|
- }
|
|
|
+ let openUrl = item.pc_url ? item.pc_url : item.url;
|
|
|
+ // if (this.$store.state.IsPC) {
|
|
|
+ // window.open(openUrl, "_blank");
|
|
|
+ // } else {
|
|
|
+ // window.location.href = openUrl;
|
|
|
+ // }
|
|
|
+ this.setCLJ(openUrl)
|
|
|
break;
|
|
|
case 3:
|
|
|
break;
|