From 70b128785737df0d6065b09a75cf79b49efe22fa Mon Sep 17 00:00:00 2001
From: licp <lichunping@guanfang.com.cn>
Date: 星期三, 24 四月 2024 15:41:25 +0800
Subject: [PATCH] 优化滚动分页,封装组件,

---
 src/components/view/b1-report-preparation.vue |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/src/components/view/b1-report-preparation.vue b/src/components/view/b1-report-preparation.vue
index 793fe08..f35498b 100644
--- a/src/components/view/b1-report-preparation.vue
+++ b/src/components/view/b1-report-preparation.vue
@@ -408,6 +408,7 @@
         let url = row.urlS?row.urlS:row.url;
         const link = document.createElement('a');
         link.href = this.javaApi + url;
+        link.target = '_blank';
         document.body.appendChild(link);
         link.click();
       },
@@ -455,7 +456,7 @@
         this.$confirm('鏄惁鎻愪氦褰撳墠鎶ュ憡?', "鎻愪氦", {
 							confirmButtonText: "鎻愪氦",
 							cancelButtonText: "鍙栨秷",
-							type: "success"
+							type: "warning"
 						}).then(() => {
 							this.$axios.post(this.$api.insReport.writeReport, {
 								id: row.id

--
Gitblit v1.9.3