liyongli 1 day ago
parent
commit
dfead57131

+ 30 - 12
src/view/fenghui/form.vue

@@ -13,7 +13,8 @@
         <div class="form">
             <van-form ref="form" @submit="onSubmit" label-width="8em">
                 <!-- 国家/地区 -->
-                <van-field size="large" input-align="right" clickable readonly @click="showCountryRegion = true"
+                <van-field size="large" input-align="right" clickable readonly
+                    @click="countryRegionList = lang[langType].countryRegionList, showCountryRegion = true"
                     right-icon="arrow"
                     :rules="[{ required: true, trigger: 'onBlur', message: lang[langType].countryRegionContent }]"
                     required v-model="formData.countryRegionName" :placeholder="lang[langType].countryRegionContent">
@@ -22,10 +23,13 @@
                     </template>
                 </van-field>
                 <van-popup v-model:show="showCountryRegion" destroy-on-close round position="bottom">
-                    <van-picker :confirm-button-text="lang[langType].confirm"
-                        :columns="lang[langType].countryRegionList" :cancel-button-text="lang[langType].cancel"
-                        @confirm="countryRegionConfirm" :title="lang[langType].countryRegion"
-                        @cancel="showCountryRegion = false" />
+                    <van-picker :confirm-button-text="lang[langType].confirm" :columns="countryRegionList"
+                        :cancel-button-text="lang[langType].cancel" @confirm="countryRegionConfirm"
+                        :title="lang[langType].countryRegion" @cancel="showCountryRegion = false">
+                        <template #columns-top>
+                            <van-search @update:model-value="input" v-model="searchConuntry" placeholder="请输入搜索关键词" />
+                        </template>
+                    </van-picker>
                 </van-popup>
 
                 <!-- 姓 -->
@@ -255,9 +259,9 @@
                         <van-radio-group checked-color="#3F5AC8" style="width: 100%;" v-model="formData.interview"
                             direction="horizontal">
                             <van-radio style="flex: 1;margin-top: 10px " name="是">{{ lang[langType].confirm
-                            }}</van-radio>
+                                }}</van-radio>
                             <van-radio style="flex: 1;margin-top: 10px " name="否">{{ lang[langType].cancel
-                            }}</van-radio>
+                                }}</van-radio>
                         </van-radio-group>
                     </template>
                 </van-field>
@@ -275,9 +279,9 @@
                         <van-radio-group checked-color="#3F5AC8" style="width: 100%;" v-model="formData.active1"
                             direction="horizontal">
                             <van-radio style="flex: 1;margin-top: 10px " name="是">{{ lang[langType].confirm
-                            }}</van-radio>
+                                }}</van-radio>
                             <van-radio style="flex: 1;margin-top: 10px " name="否">{{ lang[langType].cancel
-                            }}</van-radio>
+                                }}</van-radio>
                         </van-radio-group>
                     </template>
                 </van-field>
@@ -293,11 +297,11 @@
                         <van-radio-group checked-color="#3F5AC8" style="width: 100%;padding-left: 16px;"
                             v-model="formData.active2">
                             <van-radio style="flex: 1;margin-top: 10px " name="共享数字经济发展机遇">{{ lang[langType].active1
-                            }}</van-radio>
+                                }}</van-radio>
                             <van-radio style="flex: 1;margin-top: 10px " name="共筑网络安全防线">{{ lang[langType].active2
-                            }}</van-radio>
+                                }}</van-radio>
                             <van-radio style="flex: 1;margin-top: 10px " name="共商人工智能发展治理">{{ lang[langType].active3
-                            }}</van-radio>
+                                }}</van-radio>
                         </van-radio-group>
                     </template>
                 </van-field>
@@ -446,6 +450,20 @@ const photo = ref([]);
 const checkboxRefs = ref([]);
 const checkbox = ref(null);
 
+const searchConuntry = ref('')
+const countryRegionList = ref([]);
+
+const input = (val) => {
+    let t = setTimeout(() => {
+        countryRegionList.value = lang[props.langType].countryRegionList.filter(item => {
+            // 判断是否包含搜索的关键字,中英西班牙
+            if (props.langType === 'zh') return item.text.includes(val)
+            else return item.text.toLowerCase().includes(val.toLowerCase())
+        })
+        clearTimeout(t);
+    }, 200);
+}
+
 const onClickLeft = () => {
     emits('closeComponent');
 };

+ 23 - 6
src/view/fenghui/form1.vue

@@ -11,8 +11,9 @@
         </van-nav-bar>
         <div class="form">
             <van-form ref="form" @submit="onSubmit" label-width="8em">
-                <!-- 国家/地区 -->
-                <van-field size="large" input-align="right" clickable readonly @click="showCountryRegion = true"
+               <!-- 国家/地区 -->
+               <van-field size="large" input-align="right" clickable readonly
+                    @click="countryRegionList = lang[langType].countryRegionList, showCountryRegion = true"
                     right-icon="arrow"
                     :rules="[{ required: true, trigger: 'onBlur', message: lang[langType].countryRegionContent }]"
                     required v-model="formData.countryRegionName" :placeholder="lang[langType].countryRegionContent">
@@ -21,10 +22,13 @@
                     </template>
                 </van-field>
                 <van-popup v-model:show="showCountryRegion" destroy-on-close round position="bottom">
-                    <van-picker :confirm-button-text="lang[langType].confirm"
-                        :columns="lang[langType].countryRegionList" :cancel-button-text="lang[langType].cancel"
-                        @confirm="countryRegionConfirm" :title="lang[langType].countryRegion"
-                        @cancel="showCountryRegion = false" />
+                    <van-picker :confirm-button-text="lang[langType].confirm" :columns="countryRegionList"
+                        :cancel-button-text="lang[langType].cancel" @confirm="countryRegionConfirm"
+                        :title="lang[langType].countryRegion" @cancel="showCountryRegion = false">
+                        <template #columns-top>
+                            <van-search @update:model-value="input" v-model="searchConuntry" placeholder="请输入搜索关键词" />
+                        </template>
+                    </van-picker>
                 </van-popup>
 
                 <!-- 姓名 -->
@@ -432,6 +436,19 @@ const form = ref(null);
 const photo = ref([]);
 // const checkbox = ref(null);
 // const checkboxRefs = ref([]);
+const searchConuntry = ref('')
+const countryRegionList = ref([]);
+
+const input = (val) => {
+    let t = setTimeout(() => {
+        countryRegionList.value = lang[props.langType].countryRegionList.filter(item => {
+            // 判断是否包含搜索的关键字,中英西班牙
+            if (props.langType === 'zh') return item.text.includes(val)
+            else return item.text.toLowerCase().includes(val.toLowerCase())
+        })
+        clearTimeout(t);
+    }, 200);
+}
 
 const reset = () => {
     form.value.resetValidation();

+ 22 - 5
src/view/fenghui/form1Recurrence.vue

@@ -12,7 +12,8 @@
         <div class="form">
             <van-form ref="form" @submit="onSubmit" label-width="8em"> 
                 <!-- 国家/地区 -->
-                <van-field size="large" input-align="right" clickable readonly @click="showCountryRegion = true"
+               <van-field size="large" input-align="right" clickable readonly
+                    @click="countryRegionList = lang[langType].countryRegionList, showCountryRegion = true"
                     right-icon="arrow"
                     :rules="[{ required: true, trigger: 'onBlur', message: lang[langType].countryRegionContent }]"
                     required v-model="formData.countryRegionName" :placeholder="lang[langType].countryRegionContent">
@@ -21,10 +22,13 @@
                     </template>
                 </van-field>
                 <van-popup v-model:show="showCountryRegion" destroy-on-close round position="bottom">
-                    <van-picker :confirm-button-text="lang[langType].confirm"
-                        :columns="lang[langType].countryRegionList" :cancel-button-text="lang[langType].cancel"
-                        @confirm="countryRegionConfirm" :title="lang[langType].countryRegion"
-                        @cancel="showCountryRegion = false" />
+                    <van-picker :confirm-button-text="lang[langType].confirm" :columns="countryRegionList"
+                        :cancel-button-text="lang[langType].cancel" @confirm="countryRegionConfirm"
+                        :title="lang[langType].countryRegion" @cancel="showCountryRegion = false">
+                        <template #columns-top>
+                            <van-search @update:model-value="input" v-model="searchConuntry" placeholder="请输入搜索关键词" />
+                        </template>
+                    </van-picker>
                 </van-popup>
 
                 <!-- 姓名 -->
@@ -432,6 +436,19 @@ const activitiesAttended = ref([])
 const photo = ref([]);
 // const checkbox = ref(null);
 // const checkboxRefs = ref([]);
+const searchConuntry = ref('')
+const countryRegionList = ref([]);
+
+const input = (val) => {
+    let t = setTimeout(() => {
+        countryRegionList.value = lang[props.langType].countryRegionList.filter(item => {
+            // 判断是否包含搜索的关键字,中英西班牙
+            if (props.langType === 'zh') return item.text.includes(val)
+            else return item.text.toLowerCase().includes(val.toLowerCase())
+        })
+        clearTimeout(t);
+    }, 200);
+}
 
 const countryRegionConfirm = (values) => {
     showCountryRegion.value = false;

+ 24 - 7
src/view/fenghui/formRecurrence.vue

@@ -11,9 +11,10 @@
         </van-nav-bar>
         <div class="form">
             <van-form ref="form" @submit="onSubmit" label-width="8em">
-                <!-- 国家/地区 -->
-                <van-field size="large" input-align="right" clickable right-icon="arrow" readonly
-                    @click="showCountryRegion = true"
+               <!-- 国家/地区 -->
+               <van-field size="large" input-align="right" clickable readonly
+                    @click="countryRegionList = lang[langType].countryRegionList, showCountryRegion = true"
+                    right-icon="arrow"
                     :rules="[{ required: true, trigger: 'onBlur', message: lang[langType].countryRegionContent }]"
                     required v-model="formData.countryRegionName" :placeholder="lang[langType].countryRegionContent">
                     <template #label>
@@ -21,10 +22,13 @@
                     </template>
                 </van-field>
                 <van-popup v-model:show="showCountryRegion" destroy-on-close round position="bottom">
-                    <van-picker :confirm-button-text="lang[langType].confirm"
-                        :columns="lang[langType].countryRegionList" :cancel-button-text="lang[langType].cancel"
-                        @confirm="countryRegionConfirm" :title="lang[langType].countryRegion"
-                        @cancel="showCountryRegion = false" />
+                    <van-picker :confirm-button-text="lang[langType].confirm" :columns="countryRegionList"
+                        :cancel-button-text="lang[langType].cancel" @confirm="countryRegionConfirm"
+                        :title="lang[langType].countryRegion" @cancel="showCountryRegion = false">
+                        <template #columns-top>
+                            <van-search @update:model-value="input" v-model="searchConuntry" placeholder="请输入搜索关键词" />
+                        </template>
+                    </van-picker>
                 </van-popup>
 
                 <!-- 姓 -->
@@ -443,6 +447,19 @@ const activitiesAttended = ref([])
 const photo = ref([]);
 const checkboxRefs = ref([]);
 const checkbox = ref(null);
+const searchConuntry = ref('')
+const countryRegionList = ref([]);
+
+const input = (val) => {
+    let t = setTimeout(() => {
+        countryRegionList.value = lang[props.langType].countryRegionList.filter(item => {
+            // 判断是否包含搜索的关键字,中英西班牙
+            if (props.langType === 'zh') return item.text.includes(val)
+            else return item.text.toLowerCase().includes(val.toLowerCase())
+        })
+        clearTimeout(t);
+    }, 200);
+}
 
 const onClickLeft = () => {
     emits('closeComponent');

+ 159 - 175
src/view/fenghui/lang.js

@@ -532,212 +532,196 @@ export default {
         "countryRegionList": [
             { "text": "Asia", "value": "亚洲", "disabled": true },
             { "text": "Afghanistan", "value": "阿富汗" },
-            { "text": "Armenia", "value": "阿联酋" },
-            { "text": "Azerbaijan", "value": "阿" },
-            { "text": "Bahrain", "value": "阿塞拜疆" },
-            { "text": "Bangladesh", "value": "巴基斯坦" },
-            { "text": "Bhutan", "value": "巴勒斯坦" },
-            { "text": "Brunei", "value": "巴林" },
-            { "text": "Cambodia", "value": "不丹" },
+            { "text": "Armenia", "value": "亚美尼亚" },
+            { "text": "Azerbaijan", "value": "阿塞拜疆" },
+            { "text": "Bahrain", "value": "巴林" },
+            { "text": "Bangladesh", "value": "孟加拉国" },
+            { "text": "Bhutan", "value": "不丹" },
+            { "text": "Brunei", "value": "文莱" },
+            { "text": "Cambodia", "value": "柬埔寨" },
             { "text": "DPRK (Democratic People's Republic of Korea)", "value": "朝鲜" },
-            { "text": "Georgia", "value": "东帝汶" },
-            { "text": "India", "value": "菲律宾" },
-            { "text": "Indonesia", "value": "格鲁吉亚" },
-            { "text": "Iran", "value": "哈萨克斯坦" },
-            { "text": "Iraq", "value": "韩国" },
-            { "text": "Israel", "value": "吉尔吉斯斯坦" },
-            { "text": "Japan", "value": "柬埔寨" },
-            { "text": "Jordan", "value": "卡塔尔" },
-            { "text": "Kazakhstan", "value": "科威特" },
-            { "text": "Kuwait", "value": "老挝" },
-            { "text": "Kyrgyzstan", "value": "黎巴嫩" },
-            { "text": "Laos", "value": "马尔代夫" },
-            { "text": "Lebanon", "value": "马来西亚" },
-            { "text": "Malaysia", "value": "蒙古" },
-            { "text": "Maldives", "value": "孟加拉国" },
-            { "text": "Mongolia", "value": "缅甸" },
-            { "text": "Myanmar", "value": "尼泊尔" },
-            { "text": "Nepal", "value": "日本" },
-            { "text": "Oman", "value": "沙特阿拉伯" },
-            { "text": "Pakistan", "value": "斯里兰卡" },
-            { "text": "Palestine", "value": "塔吉克斯坦" },
-            { "text": "Philippines", "value": "泰国" },
-            { "text": "Qatar", "value": "土耳其" },
-            { "text": "ROK (Republic of Korea)", "value": "土库曼斯坦" },
-            { "text": "Saudi Arabia", "value": "文莱" },
-            { "text": "Singapore", "value": "乌兹别克斯坦" },
-            { "text": "Sri Lanka", "value": "新加坡" },
+            { "text": "Georgia", "value": "格鲁吉亚" },
+            { "text": "India", "value": "印度" },
+            { "text": "Indonesia", "value": "印度尼西亚" },
+            { "text": "Iran", "value": "伊朗" },
+            { "text": "Iraq", "value": "伊拉克" },
+            { "text": "Israel", "value": "以色列" },
+            { "text": "Japan", "value": "日本" },
+            { "text": "Jordan", "value": "约旦" },
+            { "text": "Kazakhstan", "value": "哈萨克斯坦" },
+            { "text": "Kuwait", "value": "科威特" },
+            { "text": "Kyrgyzstan", "value": "吉尔吉斯斯坦" },
+            { "text": "Laos", "value": "老挝" },
+            { "text": "Lebanon", "value": "黎巴嫩" },
+            { "text": "Malaysia", "value": "马来西亚" },
+            { "text": "Maldives", "value": "马尔代夫" },
+            { "text": "Mongolia", "value": "蒙古" },
+            { "text": "Myanmar", "value": "缅甸" },
+            { "text": "Nepal", "value": "尼泊尔" },
+            { "text": "Oman", "value": "阿曼" },
+            { "text": "Pakistan", "value": "巴基斯坦" },
+            { "text": "Palestine", "value": "巴勒斯坦" },
+            { "text": "Philippines", "value": "菲律宾" },
+            { "text": "Qatar", "value": "卡塔尔" },
+            { "text": "ROK (Republic of Korea)", "value": "韩国" },
+            { "text": "Saudi Arabia", "value": "沙特阿拉伯" },
+            { "text": "Singapore", "value": "新加坡" },
+            { "text": "Sri Lanka", "value": "斯里兰卡" },
             { "text": "Syria", "value": "叙利亚" },
-            { "text": "Tajikistan", "value": "亚美尼亚" },
-            { "text": "Thailand", "value": "也门" },
-            { "text": "Timor-Leste", "value": "伊拉克" },
-            { "text": "Türkiye", "value": "伊朗" },
-            { "text": "Turkmenistan", "value": "以色列" },
-            { "text": "UAE (United Arab Emirates)", "value": "印度" },
-            { "text": "Uzbekistan", "value": "印度尼西亚" },
-            { "text": "Viet Nam", "value": "约旦" },
-            { "text": "Yemen", "value": "越南" },
-
+            { "text": "Tajikistan", "value": "塔吉克斯坦" },
+            { "text": "Thailand", "value": "泰国" },
+            { "text": "Timor-Leste", "value": "东帝汶" },
+            { "text": "Türkiye", "value": "土耳其" },
+            { "text": "Turkmenistan", "value": "土库曼斯坦" },
+            { "text": "UAE (United Arab Emirates)", "value": "阿联酋" },
+            { "text": "Uzbekistan", "value": "乌兹别克斯坦" },
+            { "text": "Viet Nam", "value": "越南" },
+            { "text": "Yemen", "value": "也门" },
+          
             { "text": "Africa", "value": "非洲", "disabled": true },
             { "text": "Algeria", "value": "阿尔及利亚" },
-            { "text": "Angola", "value": "埃及" },
-            { "text": "Benin", "value": "埃塞俄比亚" },
-            { "text": "Botswana", "value": "安哥拉" },
-            { "text": "Burkina Faso", "value": "贝宁" },
-            { "text": "Burundi", "value": "博茨瓦纳" },
-            { "text": "Cabo Verde", "value": "布基纳法索" },
-            { "text": "Comoros", "value": "布隆迪" },
-            { "text": "Central African Republic", "value": "赤道几内亚" },
-            { "text": "Cameroon", "value": "多哥" },
-            { "text": "Congo", "value": "厄立特里亚" },
-            { "text": "Côte d'Ivoire", "value": "佛得角" },
-            { "text": "Chad", "value": "冈比亚" },
-            { "text": "Djibouti", "value": "刚果(布)" },
+            { "text": "Angola", "value": "安哥拉" },
+            { "text": "Benin", "value": "贝宁" },
+            { "text": "Botswana", "value": "博茨瓦纳" },
+            { "text": "Burkina Faso", "value": "布基纳法索" },
+            { "text": "Burundi", "value": "布隆迪" },
+            { "text": "Cabo Verde", "value": "佛得角" },
+            { "text": "Comoros", "value": "科摩罗" },
+            { "text": "Central African Republic", "value": "中非" },
+            { "text": "Cameroon", "value": "喀麦隆" },
+            { "text": "Congo", "value": "刚果(布)" },
+            { "text": "Côte d'Ivoire", "value": "科特迪瓦" },
+            { "text": "Chad", "value": "乍得" },
+            { "text": "Djibouti", "value": "吉布提" },
             { "text": "DRC (Democratic Republic of the Congo)", "value": "刚果(金)" },
-            { "text": "Egypt", "value": "吉布提" },
-            { "text": "Equatorial Guinea", "value": "几内亚" },
-            { "text": "Eritrea", "value": "几内亚比绍" },
-            { "text": "Ethiopia", "value": "加纳" },
+            { "text": "Egypt", "value": "埃及" },
+            { "text": "Equatorial Guinea", "value": "赤道几内亚" },
+            { "text": "Eritrea", "value": "厄立特里亚" },
+            { "text": "Ethiopia", "value": "埃塞俄比亚" },
             { "text": "Gabon", "value": "加蓬" },
-            { "text": "Gambia", "value": "津巴布韦" },
-            { "text": "Ghana", "value": "喀麦隆" },
-            { "text": "Guinea", "value": "科摩罗" },
-            { "text": "Guinea Bissau", "value": "科特迪瓦" },
+            { "text": "Gambia", "value": "冈比亚" },
+            { "text": "Ghana", "value": "加纳" },
+            { "text": "Guinea", "value": "几内亚" },
+            { "text": "Guinea Bissau", "value": "几内亚比绍" },
             { "text": "Kenya", "value": "肯尼亚" },
             { "text": "Lesotho", "value": "莱索托" },
-            { "text": "Libya", "value": "利比亚" },
-            { "text": "Liberia", "value": "利比亚" },
-            { "text": "Madagascar", "value": "卢旺达" },
-            { "text": "Malawi", "value": "马达加斯加" },
-            { "text": "Mali", "value": "马拉维" },
-            { "text": "Mauritania", "value": "马里" },
+            { "text": "Libya", "value": "利比亚" },
+            { "text": "Liberia", "value": "利比亚" },
+            { "text": "Madagascar", "value": "马达加斯加" },
+            { "text": "Malawi", "value": "马拉维" },
+            { "text": "Mali", "value": "马" },
+            { "text": "Mauritania", "value": "毛里塔尼亚" },
             { "text": "Mauritius", "value": "毛里求斯" },
-            { "text": "Morocco", "value": "毛里塔尼亚" },
-            { "text": "Mozambique", "value": "摩洛哥" },
-            { "text": "Namibia", "value": "莫桑比克" },
-            { "text": "Niger", "value": "纳米比亚" },
-            { "text": "Nigeria", "value": "南非" },
-            { "text": "Rwanda", "value": "南苏丹" },
-            { "text": "Sao Tome and Principe", "value": "尼日尔" },
-            { "text": "Senegal", "value": "尼日利亚" },
-            { "text": "Seychelles", "value": "塞拉利昂" },
-            { "text": "Sierra Leone", "value": "塞内加尔" },
-            { "text": "Somalia", "value": "塞舌尔" },
-            { "text": "South Africa", "value": "圣多美和普林西比" },
-            { "text": "South Sudan", "value": "斯威士兰" },
+            { "text": "Morocco", "value": "摩洛哥" },
+            { "text": "Mozambique", "value": "莫桑比克" },
+            { "text": "Namibia", "value": "纳米比亚" },
+            { "text": "Niger", "value": "尼日尔" },
+            { "text": "Nigeria", "value": "尼日利亚" },
+            { "text": "Rwanda", "value": "卢旺达" },
+            { "text": "Sao Tome and Principe", "value": "圣多美和普林西比" },
+            { "text": "Senegal", "value": "塞内加尔" },
+            { "text": "Seychelles", "value": "塞舌尔" },
+            { "text": "Sierra Leone", "value": "塞拉利昂" },
+            { "text": "Somalia", "value": "索马里" },
+            { "text": "South Africa", "value": "南非" },
+            { "text": "South Sudan", "value": "南苏丹" },
             { "text": "Sudan", "value": "苏丹" },
-            { "text": "Tanzania", "value": "索马里" },
-            { "text": "Togo", "value": "坦桑尼亚" },
+            { "text": "Tanzania", "value": "坦桑尼亚" },
+            { "text": "Togo", "value": "多哥" },
             { "text": "Tunisia", "value": "突尼斯" },
             { "text": "Uganda", "value": "乌干达" },
             { "text": "Zambia", "value": "赞比亚" },
-            { "text": "Zimbabwe", "value": "乍得" },
-            { "text": "", "value": "中非" },
-
+            { "text": "Zimbabwe", "value": "津巴布韦" },
+          
             { "text": "Europe", "value": "欧洲", "disabled": true },
             { "text": "Albania", "value": "阿尔巴尼亚" },
-            { "text": "Andorra", "value": "爱尔兰" },
-            { "text": "Austria", "value": "爱沙尼亚" },
-            { "text": "Belarus", "value": "安道尔" },
-            { "text": "Belgium", "value": "奥地利" },
-            { "text": "Bosnia and Herzegovina", "value": "白俄罗斯" },
+            { "text": "Andorra", "value": "安道尔" },
+            { "text": "Austria", "value": "奥地利" },
+            { "text": "Belarus", "value": "白俄罗斯" },
+            { "text": "Belgium", "value": "比利时" },
+            { "text": "Bosnia and Herzegovina", "value": "波黑" },
             { "text": "Bulgaria", "value": "保加利亚" },
-            { "text": "Croatia", "value": "北马其顿" },
-            { "text": "Cyprus", "value": "比利时" },
-            { "text": "Czechia", "value": "冰岛" },
-            { "text": "Denmark", "value": "波黑" },
-            { "text": "European Union", "value": "波兰" },
-            { "text": "Estonia", "value": "丹麦" },
-            { "text": "Finland", "value": "德国" },
-            { "text": "France", "value": "俄罗斯" },
-            { "text": "Germany", "value": "法国" },
-            { "text": "Greece", "value": "梵蒂冈" },
-            { "text": "Hungary", "value": "芬兰" },
-            { "text": "Iceland", "value": "荷兰" },
-            { "text": "Ireland", "value": "黑山" },
-            { "text": "Italy", "value": "捷克" },
-            { "text": "Latvia", "value": "克罗地亚" },
-            { "text": "Liechtenstein", "value": "拉脱维亚" },
+            { "text": "Croatia", "value": "克罗地亚" },
+            { "text": "Cyprus", "value": "塞浦路斯" },
+            { "text": "Czechia", "value": "捷克" },
+            { "text": "Denmark", "value": "丹麦" },
+            { "text": "Estonia", "value": "爱沙尼亚" },
+            { "text": "Finland", "value": "芬兰" },
+            { "text": "France", "value": "法国" },
+            { "text": "Germany", "value": "德国" },
+            { "text": "Greece", "value": "希腊" },
+            { "text": "Hungary", "value": "匈牙利" },
+            { "text": "Iceland", "value": "冰岛" },
+            { "text": "Ireland", "value": "爱尔兰" },
+            { "text": "Italy", "value": "意大利" },
+            { "text": "Latvia", "value": "拉脱维亚" },
+            { "text": "Liechtenstein", "value": "列支敦士登" },
             { "text": "Lithuania", "value": "立陶宛" },
-            { "text": "Luxembourg", "value": "列支敦士登" },
-            { "text": "Malta", "value": "卢森堡" },
-            { "text": "Moldova", "value": "罗马尼亚" },
-            { "text": "Monaco", "value": "马耳他" },
-            { "text": "Montenegro", "value": "摩尔多瓦" },
-            { "text": "Netherlands", "value": "摩纳哥" },
-            { "text": "North Macedonia", "value": "挪威" },
-            { "text": "Norway", "value": "葡萄牙" },
-            { "text": "Poland", "value": "瑞典" },
-            { "text": "Portugal", "value": "瑞士" },
-            { "text": "Romania", "value": "塞尔维亚" },
-            { "text": "Russia", "value": "塞浦路斯" },
+            { "text": "Luxembourg", "value": "卢森堡" },
+            { "text": "Malta", "value": "马耳他" },
+            { "text": "Moldova", "value": "摩尔多瓦" },
+            { "text": "Monaco", "value": "摩纳哥" },
+            { "text": "Montenegro", "value": "黑山" },
+            { "text": "Netherlands", "value": "荷兰" },
+            { "text": "North Macedonia", "value": "北马其顿" },
+            { "text": "Norway", "value": "挪威" },
+            { "text": "Poland", "value": "波兰" },
+            { "text": "Portugal", "value": "葡萄牙" },
+            { "text": "Romania", "value": "罗马尼亚" },
+            { "text": "Russia", "value": "俄罗斯" },
             { "text": "San Marino", "value": "圣马力诺" },
-            { "text": "Serbia", "value": "斯洛伐克" },
-            { "text": "Slovakia", "value": "斯洛文尼亚" },
-            { "text": "Slovenia", "value": "乌克兰" },
+            { "text": "Serbia", "value": "塞尔维亚" },
+            { "text": "Slovakia", "value": "斯洛伐克" },
+            { "text": "Slovenia", "value": "斯洛文尼亚" },
             { "text": "Spain", "value": "西班牙" },
-            { "text": "Sweden", "value": "希腊" },
-            { "text": "Switzerland", "value": "匈牙利" },
-            { "text": "Ukraine", "value": "意大利" },
+            { "text": "Sweden", "value": "瑞典" },
+            { "text": "Switzerland", "value": "瑞士" },
+            { "text": "Ukraine", "value": "乌克兰" },
             { "text": "United Kingdom", "value": "英国" },
-
+          
             { "text": "North America", "value": "北美洲", "disabled": true },
             { "text": "Antigua and Barbuda", "value": "安提瓜和巴布达" },
-            { "text": "Bahamas", "value": "巴巴多斯" },
-            { "text": "Barbados", "value": "巴哈马" },
-            { "text": "Canada", "value": "巴拿马" },
-            { "text": "Costa Rica", "value": "伯利兹" },
-            { "text": "Cuba", "value": "多米尼加" },
+            { "text": "Bahamas", "value": "巴哈马" },
+            { "text": "Barbados", "value": "巴巴多斯" },
+            { "text": "Canada", "value": "加拿大" },
+            { "text": "Costa Rica", "value": "哥斯达黎加" },
+            { "text": "Cuba", "value": "古巴" },
             { "text": "Dominica", "value": "多米尼克" },
-            { "text": "Dominican Republic", "value": "格林纳达" },
-            { "text": "Grenada", "value": "哥斯达黎加" },
-            { "text": "Honduras", "value": "古巴" },
-            { "text": "Jamaica", "value": "海地" },
-            { "text": "Mexico", "value": "洪都拉斯" },
-            { "text": "Nicaragua", "value": "加拿大" },
-            { "text": "Panama", "value": "美国" },
-            { "text": "Trinidad and Tobago", "value": "墨西哥" },
-            { "text": "United States of America", "value": "尼加拉瓜" },
-            { "text": "", "value": "萨尔瓦多" },
-            { "text": "", "value": "圣基茨和尼维斯" },
-            { "text": "", "value": "圣卢西亚" },
-            { "text": "", "value": "圣文森特和格林纳丁斯" },
-            { "text": "", "value": "特立尼达和多巴哥" },
-            { "text": "", "value": "危地马拉" },
-            { "text": "", "value": "牙买加" },
-
+            { "text": "Dominican Republic", "value": "多米尼加" },
+            { "text": "Grenada", "value": "格林纳达" },
+            { "text": "Honduras", "value": "洪都拉斯" },
+            { "text": "Jamaica", "value": "牙买加" },
+            { "text": "Mexico", "value": "墨西哥" },
+            { "text": "Nicaragua", "value": "尼加拉瓜" },
+            { "text": "Panama", "value": "巴拿马" },
+            { "text": "Trinidad and Tobago", "value": "特立尼达和多巴哥" },
+            { "text": "United States of America", "value": "美国" },
+          
             { "text": "South America", "value": "南美洲", "disabled": true },
             { "text": "Argentina", "value": "阿根廷" },
-            { "text": "Bolivia", "value": "巴拉圭" },
+            { "text": "Bolivia", "value": "玻利维亚" },
             { "text": "Brazil", "value": "巴西" },
-            { "text": "Chile", "value": "秘鲁" },
-            { "text": "Colombia", "value": "玻利维亚" },
+            { "text": "Chile", "value": "智利" },
+            { "text": "Colombia", "value": "哥伦比亚" },
             { "text": "Ecuador", "value": "厄瓜多尔" },
-            { "text": "Guyana", "value": "哥伦比亚" },
-            { "text": "Peru", "value": "圭亚那" },
+            { "text": "Guyana", "value": "圭亚那" },
+            { "text": "Peru", "value": "秘鲁" },
             { "text": "Suriname", "value": "苏里南" },
-            { "text": "Uruguay", "value": "委内瑞拉" },
-            { "text": "Venezuela", "value": "乌拉圭" },
-            { "text": "", "value": "智利" },
-
+            { "text": "Uruguay", "value": "乌拉圭" },
+            { "text": "Venezuela", "value": "委内瑞拉" },
+          
             { "text": "Oceania", "value": "大洋洲", "disabled": true },
             { "text": "Australia", "value": "澳大利亚" },
-            { "text": "Cook Islands", "value": "巴布亚新几内亚" },
+            { "text": "Cook Islands", "value": "库克群岛" },
             { "text": "Fiji", "value": "斐济" },
-            { "text": "Micronesia", "value": "基里巴斯" },
-            { "text": "Niue", "value": "库克群岛" },
-            { "text": "New Zealand", "value": "马绍尔群岛" },
-            { "text": "Papua New Guinea", "value": "密克罗尼西亚联邦" },
-            { "text": "Samoa", "value": "瑙鲁" },
-            { "text": "Tonga", "value": "纽埃" },
-            { "text": "Vanuatu", "value": "帕劳" },
-            { "text": "", "value": "萨摩亚" },
-            { "text": "", "value": "所罗门群岛" },
-            { "text": "", "value": "汤加" },
-            { "text": "", "value": "图瓦卢" },
-            { "text": "", "value": "瓦努阿图" },
-            { "text": "", "value": "新西兰" }
-        ],
+            { "text": "Micronesia", "value": "密克罗尼西亚联邦" },
+            { "text": "Niue", "value": "纽埃" },
+            { "text": "New Zealand", "value": "新西兰" },
+            { "text": "Papua New Guinea", "value": "巴布亚新几内亚" },
+            { "text": "Samoa", "value": "萨摩亚" },
+            { "text": "Tonga", "value": "汤加" },
+            { "text": "Vanuatu", "value": "瓦努阿图" }
+          ],
     },
     "es": {
         "technicalAdvice": "Consultoría Técnica:",