fix 80089

This commit is contained in:
赵霄
2024-01-03 15:38:10 +08:00
parent 772c90e5c7
commit a1e2403095
2 changed files with 5 additions and 4 deletions
+2 -1
View File
@@ -311,7 +311,8 @@ module.exports = {
nonConformanceTerm: '不符合项',
solutions: '应对措施',
riskPoint: '风险点',
proofScheme: '验证方案'
proofScheme: '验证方案',
noCauseInvolved: '不涉及原因'
},
// 未符合项跟踪流程
noMatchTracking: {
@@ -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'
}
]