|
@@ -333,17 +333,19 @@ export default {
|
|
|
}).post()
|
|
|
},
|
|
|
toDetail(params) {
|
|
|
- this.$router.push({
|
|
|
+ const path = this.$router.resolve({
|
|
|
path: '/sales/keywords/setting/edit',
|
|
|
query: {
|
|
|
id: params.row.id
|
|
|
}
|
|
|
})
|
|
|
+ window.open(path.href, '_blank')
|
|
|
},
|
|
|
crateNewKeywordsGroup() {
|
|
|
- this.$router.push({
|
|
|
+ const path = this.$router.resolve({
|
|
|
path: '/sales/keywords/setting/edit'
|
|
|
})
|
|
|
+ window.open(path.href, '_blank')
|
|
|
},
|
|
|
}
|
|
|
}
|