feat: There is no way the
This commit is contained in:
+45
-3
@@ -3658,9 +3658,51 @@ export default {
|
|||||||
const data = this.formFieldListData
|
const data = this.formFieldListData
|
||||||
this.formFieldList = data.map((item) => {
|
this.formFieldList = data.map((item) => {
|
||||||
if (item.attrType === 'SEL_OPTION' || item.attrType === 'SEL_OPTS') {
|
if (item.attrType === 'SEL_OPTION' || item.attrType === 'SEL_OPTS') {
|
||||||
return Object.assign({}, item, {
|
if(item.attrField === 'WSSMR'){
|
||||||
options: this.allSelectOptions[item.selVal]
|
return Object.assign({}, item, {
|
||||||
})
|
options: this.allSelectOptions["WSSMR"]
|
||||||
|
})
|
||||||
|
}else if(item.attrField === 'QCDW'){
|
||||||
|
return Object.assign({}, item, {
|
||||||
|
options: this.allSelectOptions["QCDW"]
|
||||||
|
})
|
||||||
|
}else if(item.attrField === 'CYSD'){
|
||||||
|
return Object.assign({}, item, {
|
||||||
|
options: this.allSelectOptions["WSCYSD"]
|
||||||
|
})
|
||||||
|
}else if(item.attrField === 'SYCXCLASS'){
|
||||||
|
return Object.assign({}, item, {
|
||||||
|
options: this.allSelectOptions["ENERGYTYPES"]
|
||||||
|
})
|
||||||
|
}else if(item.attrField === 'NYLX'){
|
||||||
|
return Object.assign({}, item, {
|
||||||
|
options: this.allSelectOptions["NYLXCLASS"]
|
||||||
|
})
|
||||||
|
}else if(item.attrField === 'SYCPX'){
|
||||||
|
return Object.assign({}, item, {
|
||||||
|
options: this.allSelectOptions["SYCPXCLASS"]
|
||||||
|
})
|
||||||
|
}else if(item.attrField === 'SYRZ'){
|
||||||
|
return Object.assign({}, item, {
|
||||||
|
options: this.allSelectOptions["SYRZCLASS"]
|
||||||
|
})
|
||||||
|
}else if(item.attrField === 'ZRBM'){
|
||||||
|
return Object.assign({}, item, {
|
||||||
|
options: this.allSelectOptions["ZRBMCLASS"]
|
||||||
|
})
|
||||||
|
}else if(item.attrField === 'ZRGCS'){
|
||||||
|
return Object.assign({}, item, {
|
||||||
|
options: this.allSelectOptions["ZRGCSCLASS"]
|
||||||
|
})
|
||||||
|
}else if(item.attrField === 'TXLB'){
|
||||||
|
return Object.assign({}, item, {
|
||||||
|
options: this.allSelectOptions["TXLBCLASS"]
|
||||||
|
})
|
||||||
|
}else {
|
||||||
|
return Object.assign({}, item, {
|
||||||
|
options: this.allSelectOptions[item.selVal]
|
||||||
|
})
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
return item
|
return item
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user