增加人像库页面
Some checks failed
Gitea Actions Demo / Explore-Gitea-Actions (push) Failing after 5m48s

This commit is contained in:
15683799673
2025-06-25 00:37:48 +08:00
parent 9c08cca095
commit b2acba4114
3 changed files with 40 additions and 88 deletions

View File

@@ -1,7 +1,6 @@
import type { FormSchemaGetter } from '#/adapter/form';
import type { VxeGridProps } from '#/adapter/vxe-table';
export const querySchema: FormSchemaGetter = () => [
{
component: 'Input',
@@ -20,32 +19,15 @@ export const querySchema: FormSchemaGetter = () => [
},
{
component: 'Select',
componentProps: {
},
componentProps: {},
fieldName: 'libType',
label: '库类型1人员库2工服库',
label: '库类型',
},
{
component: 'Select',
componentProps: {
},
componentProps: {},
fieldName: 'busiType',
label: '库的业务类型 1: 门禁库2: 黑名单库',
},
{
component: 'Input',
fieldName: 'createById',
label: '创建人id',
},
{
component: 'Input',
fieldName: 'updateById',
label: '更新人id',
},
{
component: 'Input',
fieldName: 'searchValue',
label: '搜索值',
label: '业务类型',
},
];
@@ -126,32 +108,15 @@ export const modalSchema: FormSchemaGetter = () => [
component: 'Input',
},
{
label: '库类型1人员库2工服库',
label: '库类型',
fieldName: 'libType',
component: 'Select',
componentProps: {
},
componentProps: {},
},
{
label: '库的业务类型 1: 门禁库2: 黑名单库',
label: '业务类型',
fieldName: 'busiType',
component: 'Select',
componentProps: {
},
},
{
label: '创建人id',
fieldName: 'createById',
component: 'Input',
},
{
label: '更新人id',
fieldName: 'updateById',
component: 'Input',
},
{
label: '搜索值',
fieldName: 'searchValue',
component: 'Input',
componentProps: {},
},
];