Browse Source

國家選單增加英文名稱

Dev
Janie 2 years ago
parent
commit
f168baa853
  1. 2
      FrontEnd/pages/user/editPersonalInfo.vue

2
FrontEnd/pages/user/editPersonalInfo.vue

@ -492,7 +492,7 @@ export default {
this.countryOptions = this.countryList.map((item) => { this.countryOptions = this.countryList.map((item) => {
return { return {
id: item.CountryID, id: item.CountryID,
name: item.CountryName,
name: item.CountryENName + " " + item.CountryName,
}; };
}); });

Loading…
Cancel
Save