|
|
@@ -1227,7 +1227,7 @@ async function getCountryList() {
|
|
|
countryOptions.value = res.data.map((item: any) => ({
|
|
|
text: item.enName,
|
|
|
value: item.code,
|
|
|
- disabled: notCountry.indexOf(item.code) !== -1,
|
|
|
+ disable: notCountry.indexOf(item.code) !== -1,
|
|
|
}))
|
|
|
countries.value = res.data
|
|
|
const country = formData.value.country
|