This commit is contained in:
孟帅
2023-11-25 18:36:11 +08:00
parent 40117c700d
commit 70e9f966c3
142 changed files with 5407 additions and 2058 deletions

View File

@@ -137,6 +137,28 @@ const schemas: FormSchema[] = [
},
},
},
{
field: 'id',
component: 'NInput',
label: '用户ID',
componentProps: {
placeholder: '请输入用户ID',
onInput: (e: any) => {
console.log(e);
},
},
},
{
field: 'pid',
component: 'NInput',
label: '上级ID',
componentProps: {
placeholder: '请输入上级用户ID',
onInput: (e: any) => {
console.log(e);
},
},
},
{
field: 'status',
component: 'NSelect',