Browse Source

订单审核通过tab页-订单轨迹明细查询打开新标签页

@dongkboy 4 weeks ago
parent
commit
78d1b639af
1 changed files with 2 additions and 1 deletions
  1. 2 1
      src/views/finance/index.vue

+ 2 - 1
src/views/finance/index.vue

@@ -1054,13 +1054,14 @@ const handleTrack = (scope) => {
   })
 }
 const viewDetail = (row) => {
-  myRouter.push({
+  const { href } = myRouter.resolve({
     name: 'InsurancePolicyViewDetail',
     query: {
       info: JSON.stringify(row),
       activeindex: activeName.value
     }
   })
+  window.open(href, '_blank')
 }
 // 数据导出// 数据导出
 const handleExport = (type: any) => {