update 项目合规流程

This commit is contained in:
赵霄
2023-12-22 15:11:28 +08:00
parent 774622be30
commit 8d8e021b04
2 changed files with 37 additions and 11 deletions
@@ -252,10 +252,16 @@ export default {
// 不符合
'2': {
rules: {
// 依据描述
description: {
// 不符合项
nonConformance: {
required: true,
message: this.$t('pleaseEnter') + this.$t('standardConsultation.basisDescription'),
message: this.$t('pleaseEnter') + this.$t('projectCompliance.nonConformanceTerm'),
trigger: 'blur'
},
// 应对措施
countermeasures: {
required: true,
message: this.$t('pleaseEnter') + this.$t('projectCompliance.solutions'),
trigger: 'blur'
},
// 预计整改完成日期
@@ -268,8 +274,13 @@ export default {
formArr: [
{
fieldShowType: 1,
dbFieldTxt: this.$t('standardConsultation.basisDescription'),
dbFieldName: 'description'
dbFieldTxt: this.$t('projectCompliance.nonConformanceTerm'),
dbFieldName: 'nonConformance'
},
{
fieldShowType: 1,
dbFieldTxt: this.$t('projectCompliance.solutions'),
dbFieldName: 'countermeasures'
},
{
fieldShowType: 3,
@@ -281,10 +292,16 @@ export default {
// 待验证
'3': {
rules: {
// 依据描述
description: {
// 风险点
riskPoints: {
required: true,
message: this.$t('pleaseEnter') + this.$t('standardConsultation.basisDescription'),
message: this.$t('pleaseEnter') + this.$t('projectCompliance.riskPoint'),
trigger: 'blur'
},
// 验证方案
validateSolution: {
required: true,
message: this.$t('pleaseEnter') + this.$t('projectCompliance.proofScheme'),
trigger: 'blur'
},
// 预计整改完成日期
@@ -297,8 +314,13 @@ export default {
formArr: [
{
fieldShowType: 1,
dbFieldTxt: this.$t('standardConsultation.basisDescription'),
dbFieldName: 'description'
dbFieldTxt: this.$t('projectCompliance.riskPoint'),
dbFieldName: 'riskPoints'
},
{
fieldShowType: 1,
dbFieldTxt: this.$t('projectCompliance.proofScheme'),
dbFieldName: 'validateSolution'
},
{
fieldShowType: 3,