|
@@ -130,12 +130,13 @@ function handleFilterList() {
|
|
|
|
|
|
|
|
|
function handleEditUser(e) {
|
|
|
- router.push({
|
|
|
+ const link=router.resolve({
|
|
|
path: '/customer/userEdit',
|
|
|
query: {
|
|
|
id: e.UserId
|
|
|
}
|
|
|
- })
|
|
|
+ }).href
|
|
|
+ window.open(link,'__blank')
|
|
|
}
|
|
|
|
|
|
// 禁用用户
|
|
@@ -177,12 +178,13 @@ function handleDelUser(row) {
|
|
|
|
|
|
// 跳转详情
|
|
|
function handleGoDetail(e){
|
|
|
- router.push({
|
|
|
+ const link=router.resolve({
|
|
|
path:'/customer/userDetail',
|
|
|
query:{
|
|
|
id:e.UserId
|
|
|
}
|
|
|
- })
|
|
|
+ }).href
|
|
|
+ window.open(link,'__blank')
|
|
|
}
|
|
|
|
|
|
|