|
@@ -556,6 +556,13 @@ const initFormData = () => {
|
|
|
subData[key] === '是' && formData.active2.push('共商人工智能发展治理')
|
|
|
continue
|
|
|
}
|
|
|
+ if (key === 'countryRegion') {
|
|
|
+ try {
|
|
|
+ formData.countryRegionName = lang[props.langType].countryRegionList.filter(item => item.value === subData[key])[0].text;
|
|
|
+ } catch (err) {
|
|
|
+ formData.countryRegionName = '';
|
|
|
+ }
|
|
|
+ }
|
|
|
formData[relationship[key]] = subData[key];
|
|
|
}
|
|
|
}
|
|
@@ -587,7 +594,7 @@ const onUnitTypeConfirm = (values) => {
|
|
|
}
|
|
|
const countryRegionConfirm = (values) => {
|
|
|
showCountryRegion.value = false;
|
|
|
- formData.countryRegionName = values.selectedOptions[0].text;
|
|
|
+ formData.countryRegionNam = values.selectedOptions[0].text;
|
|
|
formData.countryRegion = values.selectedOptions[0].value;
|
|
|
}
|
|
|
|