From c67a75b17dc46c5435c17e50ed0c1db83bbfa51a Mon Sep 17 00:00:00 2001 From: taojinlong Date: Wed, 21 Dec 2022 20:55:55 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E6=95=B0=E6=8D=AE=E6=BA=90=E5=A4=8D?= =?UTF-8?q?=E5=88=B6=E4=B8=8D=E6=8F=90=E7=A4=BA=E4=BF=AE=E6=94=B9=E4=BF=A1?= =?UTF-8?q?=E6=81=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/src/views/system/datasource/DsFormContent.vue | 2 +- frontend/src/views/system/datasource/DsTree.vue | 10 +++++++++- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/frontend/src/views/system/datasource/DsFormContent.vue b/frontend/src/views/system/datasource/DsFormContent.vue index 98a9e70ca1..8bfc71907f 100644 --- a/frontend/src/views/system/datasource/DsFormContent.vue +++ b/frontend/src/views/system/datasource/DsFormContent.vue @@ -1000,7 +1000,7 @@ export default { method = this.formType === 'add' ? appApply : appEdit } if ( - this.formType === 'modify' && + this.formType === 'modify' && this.$route.query.showModel !== 'copy' && this.originConfiguration !== form.configuration ) { if (repeat && !isAppMarket) { diff --git a/frontend/src/views/system/datasource/DsTree.vue b/frontend/src/views/system/datasource/DsTree.vue index 44f4ddc3fc..876c047492 100644 --- a/frontend/src/views/system/datasource/DsTree.vue +++ b/frontend/src/views/system/datasource/DsTree.vue @@ -174,7 +174,10 @@ {{ $t('chart.edit') }} - + {{ $t('commons.copy') }} @@ -899,4 +902,9 @@ export default { margin-left: 0; } } +.de-copy-icon { + cursor: pointer; + margin-right: 5px; + color: var(--deTextSecondary, #646a73); +}