| | |
| | | ></ProRadio> |
| | | </QueryMenuItem> |
| | | <QueryMenuItem title="身份"> |
| | | <ProRadio v-model="query.identity" :value-enum="identityList" show-all-btn></ProRadio> |
| | | <ProRadio |
| | | v-model="query.personalIdentityCode" |
| | | :value-enum="identityList" |
| | | show-all-btn |
| | | ></ProRadio> |
| | | </QueryMenuItem> |
| | | <QueryMenuItem> |
| | | <template #title> |
| | |
| | | const query = defineModel<{ |
| | | genderLimit: number | string; |
| | | age: number[]; |
| | | identity: string; |
| | | personalIdentityCode: string; |
| | | certificateType: string; |
| | | }>('query'); |
| | | |
| | | const DefaultQuery = { |
| | | ...query.value, |
| | | age: [...query.value.age], |
| | | }; |
| | | |
| | | function handleReset() { |