Commit f604ed08 authored by youjie's avatar youjie

no message

parent 9b6ea73c
...@@ -108,16 +108,18 @@ ...@@ -108,16 +108,18 @@
<icon-down size="16" strokeLinejoin="miter" /> <icon-down size="16" strokeLinejoin="miter" />
</div> </div>
<template #content> <template #content>
<a-doption <a-scrollbar class="max-h-[200px] overflow-auto">
v-for="option in AreaCodeList" <a-doption
:key="option.value" v-for="option in AreaCodeList"
@click.stop="handleAreaCodeChange(option.value)"> :key="option.value"
<div class="flex items-center space-x-3 px-2 py-1"> @click.stop="handleAreaCodeChange(option.value)">
<!-- <span class="text-lg">{{ option.flag }}</span> --> <div class="flex items-center space-x-3 px-2 py-1">
<span class="font-medium">{{ option.label }}</span> <!-- <span class="text-lg">{{ option.flag }}</span> -->
<span class="text-[#A3A4A0] font-light">({{ option.value }})</span> <span class="font-medium">{{ option.label }}</span>
</div> <span class="text-[#A3A4A0] font-light">({{ option.value }})</span>
</a-doption> </div>
</a-doption>
</a-scrollbar>
</template> </template>
</a-dropdown> </a-dropdown>
...@@ -623,6 +625,7 @@ const handleSubmit = async () => { ...@@ -623,6 +625,7 @@ const handleSubmit = async () => {
email: formData.email,// 必需 email: formData.email,// 必需
name: formData.name || '', name: formData.name || '',
phone: formData.phone || '', phone: formData.phone || '',
phoneCode: formData.phoneCode || '',
sex: formData.sex, sex: formData.sex,
birthday: formData.birthday || null, birthday: formData.birthday || null,
lineId: formData.lineId || '', lineId: formData.lineId || '',
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment