From a05015e7305a9e7f5cf866dac0fbdd8338863ebf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=8C=83=E5=BC=BA=E5=BC=BA?= <787203167> Date: Mon, 17 Apr 2023 16:30:54 +0800 Subject: [PATCH] =?UTF-8?q?=E8=AE=A4=E8=AF=81=E6=B8=85=E5=8D=95=E5=A2=9E?= =?UTF-8?q?=E5=8A=A0=E2=80=9D=E8=AE=A4=E8=AF=81=E7=B1=BB=E5=9E=8B=E2=80=9C?= =?UTF-8?q?=E5=AD=97=E6=AE=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../projectManagement/components/listOfRegulations.vue | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/jero-web/src/views/projectManagement/components/listOfRegulations.vue b/jero-web/src/views/projectManagement/components/listOfRegulations.vue index faa147f1c..184af3aac 100644 --- a/jero-web/src/views/projectManagement/components/listOfRegulations.vue +++ b/jero-web/src/views/projectManagement/components/listOfRegulations.vue @@ -137,7 +137,7 @@ {{ $t('modifyOperator') }} -
{{ $t('copy') }} @@ -183,7 +183,7 @@ {{ $t('add') }}
-
+
{{ $t('copy') }}
@@ -1686,14 +1686,14 @@ downloadFile(this.url.exportData, this.$route.query.projectName + '.zip', query, this.Deselect) }, //复制 - copyClick() { + copyClick(operateType) { if (this.selectedRowKeys.length > 0) { let _this = this this.$confirm({ content: _this.$t('ConfirmReplication'), onOk() { let idList = JSON.parse(JSON.stringify(_this.selectedRowKeys)) - getAction(_this.url.copyUrl, { ids: idList.join(',') }).then((res) => { + getAction(_this.url.copyUrl, { ids: idList.join(','),operateType:operateType }).then((res) => { if (res.success) { _this.$message.success(_this.$t('OperationSuccessful')) _this.selectedRowKeys = []