时区搜索
This commit is contained in:
parent
39fa3b0801
commit
05e2e2df34
@ -51,7 +51,6 @@
|
||||
size="small"
|
||||
ref="select"
|
||||
show-search
|
||||
@change="selguojia"
|
||||
:getPopupContainer="
|
||||
(triggerNode) => triggerNode.parentNode
|
||||
"
|
||||
@ -59,7 +58,7 @@
|
||||
<a-select-option
|
||||
v-for="(item, index) in chiveslist[0]"
|
||||
:key="index"
|
||||
:value="item.id"
|
||||
:value="item.name"
|
||||
>
|
||||
{{ item.name }}
|
||||
</a-select-option>
|
||||
@ -253,7 +252,7 @@
|
||||
<div class="input-box time-zone-box">
|
||||
<div class="label">{{ lan.$t("shiqu") }}</div>
|
||||
<a-select
|
||||
v-model:value="userinfo.zoneid"
|
||||
v-model:value="userinfo.zoneStr"
|
||||
style="width: 171px"
|
||||
size="small"
|
||||
ref="select"
|
||||
@ -265,7 +264,7 @@
|
||||
<a-select-option
|
||||
v-for="(item, index) in zonelist"
|
||||
:key="index"
|
||||
:value="item.zoneid"
|
||||
:value="item.city + item.gmt"
|
||||
>
|
||||
{{ item.city }}{{ item.gmt }}
|
||||
</a-select-option>
|
||||
@ -831,6 +830,17 @@ export default defineComponent({
|
||||
// uesrinfo.currency = currencylist.value[i].value;
|
||||
// }
|
||||
// }
|
||||
for(const i in chiveslist.value[0]){
|
||||
if(chiveslist.value[0][i].name == uesrinfo.country){
|
||||
uesrinfo.countryValue = chiveslist.value[0][i].id
|
||||
}
|
||||
}
|
||||
for(const i in zonelist.value){
|
||||
if((zonelist.value[i].city + zonelist.value[i].gmt) == uesrinfo.zoneStr){
|
||||
uesrinfo.zoneid = zonelist.value[i].zoneid
|
||||
}
|
||||
console.log(zonelist.value[i].city + zonelist.value[i].gmt, uesrinfo.zoneStr)
|
||||
}
|
||||
if (reg.test(userinfo.value.email)) {
|
||||
putmember(uesrinfo);
|
||||
} else {
|
||||
@ -894,10 +904,10 @@ export default defineComponent({
|
||||
// picinfo.url=res.video.url
|
||||
formData.value.img = res.video.url;
|
||||
}
|
||||
function selguojia(e: any){
|
||||
userinfo.value.countryValue = e;
|
||||
console.log(e)
|
||||
}
|
||||
// function selguojia(e: any){
|
||||
// userinfo.value.countryValue = e;
|
||||
// console.log(e)
|
||||
// }
|
||||
|
||||
return {
|
||||
modalNode,
|
||||
@ -940,7 +950,6 @@ export default defineComponent({
|
||||
showname,
|
||||
uploadspic,
|
||||
lan,
|
||||
selguojia
|
||||
};
|
||||
},
|
||||
});
|
||||
|
Loading…
Reference in New Issue
Block a user