|
@@ -66,7 +66,8 @@ export default {
|
|
|
},
|
|
|
turnTo(item) {
|
|
|
if (item.url !== undefined) {
|
|
|
- window.location.href = item.url;
|
|
|
+ // window.location.href = item.url;
|
|
|
+ window.open(item.url);
|
|
|
} else {
|
|
|
let route = this.$route.path;
|
|
|
this.$router.push({ path: `/detail?id=${item.id}` });
|