From 324bc1a536d10ee632256fbe3adc8fc3a912ad79 Mon Sep 17 00:00:00 2001 From: caiyiling <1321909229@qq.com> Date: Wed, 4 Sep 2024 10:14:14 +0800 Subject: [PATCH] =?UTF-8?q?=E7=A8=BD=E6=9F=A5=E6=9B=B4=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, 4 insertions(+), 2 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 df893644..76fdc045 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 @@ -978,6 +978,8 @@ export default { this.tableListData = [] this[auditData] = [] config.forEach(v => { + v.Code = this.$i18n.locale === 'zh' ? v.Code : v.CodeEn ? CodeEn : v.Code + var item if (!v.IsEnable) return if (v.IsShowByTrialConfig) { @@ -1084,7 +1086,7 @@ export default { a = getToken() } return v.UrlParameterName + '=' + a + '&' - }).toString().replaceAll(',', '') : v.UrlConfig.RoutePath, + }).toString().replaceAll(',', '') + 'zh='+this.$i18n.locale : v.UrlConfig.RoutePath, newValue: v.UrlConfig.IsHaveParameters ? v.UrlConfig.RoutePath + '?' + v.UrlConfig.ParameterList.map((v) => { let a = obj[v.UrlParameterValueName] ? obj[v.UrlParameterValueName] : parentRow[v.UrlParameterValueName] @@ -1092,7 +1094,7 @@ export default { a = getToken() } return v.UrlParameterName + '=' + a + '&' - }).toString().replaceAll(',', '') : v.UrlConfig.RoutePath + }).toString().replaceAll(',', '') + 'zh='+this.$i18n.locale : v.UrlConfig.RoutePath } console.log(item) item.IsTableFiled = v.IsTableFiled