Browse Source

被无效历史跳转到报告新增一个网页

zhuliu 1 year ago
parent
commit
9a6b03e6ad

+ 2 - 1
src/views/project/patentDetails/components/patentMessage/history/mixins/index.js

@@ -55,7 +55,7 @@ export default{
             })
         },
         checkReport(row){
-            this.$router.push({
+            let router = this.$router.resolve({
                 path: '/reportDetails',
                 query: {
                   projectId: row.projectId,
@@ -65,6 +65,7 @@ export default{
                   status:row.status,
                 }
             })
+            window.open(router.href, '_blank')
         },
     },
 }