feat: 新增用户管理

This commit is contained in:
2024-04-14 12:17:33 +08:00
parent ceef5ceb15
commit 7e093e15f9
8 changed files with 641 additions and 0 deletions

View File

@@ -19,6 +19,15 @@
></a-input>
</template>
<template v-if="item.type === 'input-password'">
<a-input-password
:placeholder="`请输入${item.label}`"
v-bind="(item.props as A.InputInstance['$props'])"
:model-value="modelValue[item.field as keyof typeof modelValue]"
@update:model-value="valueChange($event, item.field)"
></a-input-password>
</template>
<template v-if="item.type === 'input-number'">
<a-input-number
:placeholder="`请输入${item.label}`"