|
|
|
@ -52,6 +52,9 @@ export default { |
|
|
|
const currentConfig = this.allFieldsConfig[key] |
|
|
|
if (currentConfig?.selectTo) { |
|
|
|
this.formFields[currentConfig?.selectTo] = val |
|
|
|
if (this.errors[currentConfig?.selectTo]) { |
|
|
|
this.$set(this.errors, currentConfig?.selectTo, false) |
|
|
|
} |
|
|
|
} |
|
|
|
this.onValueChangeCompareTo(key, val) |
|
|
|
this.formFields[key] = val |
|
|
|
@ -403,7 +406,6 @@ export default { |
|
|
|
key.startsWith('selectInfo_') |
|
|
|
) |
|
|
|
} |
|
|
|
console.log(selectInfoKeys,"selectInfoKeys",this.formFields) |
|
|
|
selectInfoKeys.forEach((key) => { |
|
|
|
result[key] = this.formFields[key] || formData[key] || '' |
|
|
|
}) |
|
|
|
|