|
@@ -121,9 +121,9 @@
|
|
|
let addressRes = '';
|
|
|
let isChina = formData.country == '中国' || formData.country == 'China';
|
|
|
if (md.mobile()) {
|
|
|
- addressRes = isChina ? `${formData.country},${formData.city}` : `${formData.country}`;
|
|
|
+ addressRes = isChina ? `${formData.country},${formData.city}` : formData.country;
|
|
|
} else {
|
|
|
- addressRes = formData.countries ? `${formData.country},${formData.countries}` : formData.country;
|
|
|
+ addressRes = isChina ? `${formData.country},${formData.countries}` : formData.country;
|
|
|
}
|
|
|
console.log('isChina', isChina);
|
|
|
// return new Promise((resolve) => {
|