标准性质为准入性时,责任部门改为非必填 国内标准页面和标准法规入库流程页面

This commit is contained in:
Xia Zekun
2024-03-21 10:43:52 +08:00
committed by fengchenchen
parent 07c8cfbf0e
commit 0187e61845
2 changed files with 34 additions and 0 deletions
+17
View File
@@ -764,6 +764,7 @@ export default {
handleDomesticSpecialCheck () {
if (this.domesticSpecialCheck) {
const fieldNameList = ['part_name', 'applicable_certification', 'applicable_vehicle']
const fieldNameListOpposite = ['responsible_department'] // “推荐性”标准性质 下时, 责任部门改为非必填
const rules = JSON.parse(JSON.stringify(this.rules))
if (this.formInline.standard_property === StandardProperty.admittance.value) {
fieldNameList.forEach(key => {
@@ -774,6 +775,14 @@ export default {
this.dataList[dataPart][index].fieldMustInput = '1'
}
})
fieldNameListOpposite.forEach(key => {
if (rules[key] && rules[key].length > 0) {
rules[key][0].required = false
const dataPart = Object.keys(this.dataList).find(tt => this.dataList[tt].some(item => item.dbFieldName === key))
const index = this.dataList[dataPart].findIndex(tt => tt.dbFieldName === key)
this.dataList[dataPart][index].fieldMustInput = '0'
}
})
} else {
fieldNameList.forEach(key => {
if (rules[key] && rules[key].length > 0) {
@@ -783,6 +792,14 @@ export default {
this.dataList[dataPart][index].fieldMustInput = '0'
}
})
fieldNameListOpposite.forEach(key => {
if (rules[key] && rules[key].length > 0) {
rules[key][0].required = true
const dataPart = Object.keys(this.dataList).find(tt => this.dataList[tt].some(item => item.dbFieldName === key))
const index = this.dataList[dataPart].findIndex(tt => tt.dbFieldName === key)
this.dataList[dataPart][index].fieldMustInput = '1'
}
})
}
this.rules = Object.assign({}, rules)
this.clearValidate(fieldNameList)