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') }}
-
+
@@ -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 = []