@@ -254,7 +254,11 @@
jumpToDetail(item) {
const { url } = item
- window.open(url, "_blank")
+ if (this.mobile) {
+ location.href = url
+ } else {
+ window.open(url, "_blank")
+ }
},
delConnectionHandler({ item_id, type }, index) {