diff --git a/core/datacap-web/src/i18n/langs/en/index.ts b/core/datacap-web/src/i18n/langs/en/index.ts
index 22b9331a..9732d9da 100644
--- a/core/datacap-web/src/i18n/langs/en/index.ts
+++ b/core/datacap-web/src/i18n/langs/en/index.ts
@@ -13,6 +13,7 @@ import copy from "@/i18n/langs/en/copy";
import calendarHeatmap from "@/i18n/langs/en/calendarHeatmap";
import pipeline from "@/i18n/langs/en/pipeline";
import manager from "@/i18n/langs/en/source/manager";
+import report from "@/i18n/langs/en/report";
export default {
...en,
@@ -29,6 +30,7 @@ export default {
copy: copy,
calendarHeatmap: calendarHeatmap,
pipeline: pipeline,
+ report: report,
source: {
manager: manager
}
diff --git a/core/datacap-web/src/i18n/langs/en/report.ts b/core/datacap-web/src/i18n/langs/en/report.ts
new file mode 100644
index 00000000..bbad3b74
--- /dev/null
+++ b/core/datacap-web/src/i18n/langs/en/report.ts
@@ -0,0 +1,5 @@
+export default {
+ deleteTip1: 'You are deleting a report. This action permanently deletes the report. Please be sure to confirm your actions before proceeding. ',
+ deleteTip2: 'Warning: This cannot be undone. ',
+ deleteTip3: 'To confirm, type [ REPLACE_NAME ] in the box below'
+}
diff --git a/core/datacap-web/src/i18n/langs/zhCn/index.ts b/core/datacap-web/src/i18n/langs/zhCn/index.ts
index bd628a0e..805a2b26 100644
--- a/core/datacap-web/src/i18n/langs/zhCn/index.ts
+++ b/core/datacap-web/src/i18n/langs/zhCn/index.ts
@@ -13,6 +13,7 @@ import copy from "@/i18n/langs/zhCn/copy";
import calendarHeatmap from "@/i18n/langs/zhCn/calendarHeatmap";
import pipeline from "@/i18n/langs/zhCn/pipeline";
import manager from "@/i18n/langs/zhCn/source/manager";
+import report from "@/i18n/langs/zhCn/report";
export default {
...zh,
@@ -29,6 +30,7 @@ export default {
copy: copy,
calendarHeatmap: calendarHeatmap,
pipeline: pipeline,
+ report: report,
source: {
manager: manager
}
diff --git a/core/datacap-web/src/i18n/langs/zhCn/report.ts b/core/datacap-web/src/i18n/langs/zhCn/report.ts
new file mode 100644
index 00000000..1d85f482
--- /dev/null
+++ b/core/datacap-web/src/i18n/langs/zhCn/report.ts
@@ -0,0 +1,5 @@
+export default {
+ deleteTip1: '您正在执行删除报表操作。此操作将永久性地删除该报表。请在继续之前务必确认您的操作。',
+ deleteTip2: '警告:执行此操作将无法撤销。',
+ deleteTip3: '要确认,请在下面的框中键入 [ REPLACE_NAME ]'
+}
diff --git a/core/datacap-web/src/services/admin/ReportService.ts b/core/datacap-web/src/services/admin/ReportService.ts
index c0311620..1845ce7f 100644
--- a/core/datacap-web/src/services/admin/ReportService.ts
+++ b/core/datacap-web/src/services/admin/ReportService.ts
@@ -1,5 +1,6 @@
import {ResponseModel} from '@/model/ResponseModel';
import {BaseService} from '@/services/BaseService';
+import {HttpCommon} from "@/common/HttpCommon";
const baseUrl = '/api/v1/report';
@@ -13,7 +14,7 @@ class ReportService
deleteById(id: number): Promise