From f3b36b91270a72d3b41d70f6ce2ab8479aab41da Mon Sep 17 00:00:00 2001 From: caiyiling <1321909229@qq.com> Date: Wed, 28 Aug 2024 15:06:15 +0800 Subject: [PATCH] =?UTF-8?q?=E7=A8=BD=E6=9F=A5=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../trials-panel/trial-summary/audit-record/index.vue | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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 2f0664cb..d285c900 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 @@ -1019,21 +1019,21 @@ export default { if (row.OptType === 'Add' || row.OptType === 'Init') { item = { key: v.Code, - Enum: v.ValueCN, + Enum: this.$i18n.locale === 'zh' ? v.ValueCN : v.Value, newValue: obj[v.Code] ? obj[v.Code] : '--', oldValue: '' } } else if (row.OptType === 'Delete') { item = { key: v.Code, - Enum: v.ValueCN, + Enum: this.$i18n.locale === 'zh' ? v.ValueCN : v.Value, oldValue: obj[v.Code] ? obj[v.Code] : '--', newValue: '--' } } else { item = { key: v.Code, - Enum: v.ValueCN, + Enum: this.$i18n.locale === 'zh' ? v.ValueCN : v.Value, newValue: obj[v.Code] ? obj[v.Code] : '--', oldValue: upObj[v.Code].length > 0 ? upObj[v.Code] : '--' }