From a1e2403095881e07d993c8af6925fa827784833b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=B5=B5=E9=9C=84?= Date: Wed, 3 Jan 2024 15:38:10 +0800 Subject: [PATCH] fix 80089 --- src/common/lang/zh-cn.js | 3 ++- .../ProjectComplianceEvaluationProcess.vue | 6 +++--- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/src/common/lang/zh-cn.js b/src/common/lang/zh-cn.js index 14d12e5..917ec43 100644 --- a/src/common/lang/zh-cn.js +++ b/src/common/lang/zh-cn.js @@ -311,7 +311,8 @@ module.exports = { nonConformanceTerm: '不符合项', solutions: '应对措施', riskPoint: '风险点', - proofScheme: '验证方案' + proofScheme: '验证方案', + noCauseInvolved: '不涉及原因' }, // 未符合项跟踪流程 noMatchTracking: { diff --git a/src/views/workCenter/projectComplianceEvaluationProcess/ProjectComplianceEvaluationProcess.vue b/src/views/workCenter/projectComplianceEvaluationProcess/ProjectComplianceEvaluationProcess.vue index b45c246..aad5103 100644 --- a/src/views/workCenter/projectComplianceEvaluationProcess/ProjectComplianceEvaluationProcess.vue +++ b/src/views/workCenter/projectComplianceEvaluationProcess/ProjectComplianceEvaluationProcess.vue @@ -332,17 +332,17 @@ export default { // 不涉及 '4': { rules: { - // 依据描述 + // 不涉及原因 description: { required: true, - message: this.$t('pleaseEnter') + this.$t('standardConsultation.basisDescription'), + message: this.$t('pleaseEnter') + this.$t('projectCompliance.noCauseInvolved'), trigger: 'blur' } }, formArr: [ { fieldShowType: 1, - dbFieldTxt: this.$t('standardConsultation.basisDescription'), + dbFieldTxt: this.$t('projectCompliance.noCauseInvolved'), dbFieldName: 'description' } ]