From 26c58f14fae00adcd65821e15cc5de9697885254 Mon Sep 17 00:00:00 2001 From: wangxiaoshuang <825034831@qq.com> Date: Wed, 14 May 2025 16:14:05 +0800 Subject: [PATCH 1/8] =?UTF-8?q?=E7=A8=BD=E6=9F=A5=E8=BD=A8=E8=BF=B9?= =?UTF-8?q?=E5=85=B3=E8=81=94=E6=93=8D=E4=BD=9C=E9=A1=B5=E9=9D=A2=E7=9A=84?= =?UTF-8?q?=E6=A0=87=E9=A2=98=E9=9C=80=E8=A6=81=E5=8C=BA=E5=88=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../trials/trials-panel/trial-summary/audit-record/index.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/trials/trials-panel/trial-summary/audit-record/index.vue b/src/views/trials/trials-panel/trial-summary/audit-record/index.vue index cdedeb41..85063181 100644 --- a/src/views/trials/trials-panel/trial-summary/audit-record/index.vue +++ b/src/views/trials/trials-panel/trial-summary/audit-record/index.vue @@ -1248,7 +1248,7 @@ export default { }) // 查看关联操作 - this.model_cfg2.title = `${this.$t('trials:auditRecord:title:viewRelationOperations')}--${this.$i18n.locale === 'en' ? this.currentRow.Description : this.currentRow.DescriptionCN}` + this.model_cfg2.title = `${n ? this.$t('trials:auditRecord:title:viewRelationOperations2') : this.$t('trials:auditRecord:title:viewRelationOperations')}--${this.$i18n.locale === 'en' ? this.currentRow.Description : this.currentRow.DescriptionCN}` this.loading = true getInspectionList(searchData).then((res) => { this.list2 = res.CurrentPageData From 78fbae1c1f0149a210bba697c96df936e8e3a70e Mon Sep 17 00:00:00 2001 From: wangxiaoshuang <825034831@qq.com> Date: Thu, 15 May 2025 09:46:25 +0800 Subject: [PATCH 2/8] =?UTF-8?q?=E9=80=9A=E7=94=A8=E5=9F=B9=E8=AE=AD?= =?UTF-8?q?=E8=AE=B0=E5=BD=95=E7=9A=84=E7=9B=B8=E5=85=B3=E6=96=87=E4=BB=B6?= =?UTF-8?q?=E6=B7=BB=E5=8A=A0/=E7=BC=96=E8=BE=91=E5=BC=B9=E6=A1=86?= =?UTF-8?q?=E9=9C=80=E8=A6=81=E5=A2=9E=E5=8A=A0=E6=A0=87=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../components/SignatureTemplate/attachmentList.vue | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/views/dictionary/attachment/components/SignatureTemplate/attachmentList.vue b/src/views/dictionary/attachment/components/SignatureTemplate/attachmentList.vue index 8aaaaac1..31531ffd 100644 --- a/src/views/dictionary/attachment/components/SignatureTemplate/attachmentList.vue +++ b/src/views/dictionary/attachment/components/SignatureTemplate/attachmentList.vue @@ -147,6 +147,10 @@ export default { } }, edit(row) { + this.title = this.$t('dictionary:signature:attachmentForm:title:update') + if (!row.Id) { + this.title = this.$t('dictionary:signature:attachmentForm:title:add') + } this.rowData = Object.assign({}, row) this.visible = true }, From e2db9c2d51ae0cceea26b055ec04aea2a402b093 Mon Sep 17 00:00:00 2001 From: wangxiaoshuang <825034831@qq.com> Date: Thu, 15 May 2025 11:08:06 +0800 Subject: [PATCH 3/8] =?UTF-8?q?=E9=80=9A=E7=94=A8=E5=9F=B9=E8=AE=AD?= =?UTF-8?q?=E6=96=87=E6=A1=A3=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../SignatureTemplate/attachmentList.vue | 19 +++++++++- .../components/SignatureTemplate/index.vue | 35 +++++++++++-------- 2 files changed, 39 insertions(+), 15 deletions(-) diff --git a/src/views/dictionary/attachment/components/SignatureTemplate/attachmentList.vue b/src/views/dictionary/attachment/components/SignatureTemplate/attachmentList.vue index 31531ffd..ef5ed7cb 100644 --- a/src/views/dictionary/attachment/components/SignatureTemplate/attachmentList.vue +++ b/src/views/dictionary/attachment/components/SignatureTemplate/attachmentList.vue @@ -2,6 +2,11 @@