增加人像页面
This commit is contained in:
@@ -1,44 +1,34 @@
|
||||
import type { FormSchemaGetter } from '#/adapter/form';
|
||||
import type { VxeGridProps } from '#/adapter/vxe-table';
|
||||
|
||||
import { DictEnum } from '@vben/constants';
|
||||
import { getPopupContainer } from '@vben/utils';
|
||||
|
||||
import { getDictOptions } from '#/utils/dict';
|
||||
|
||||
export const querySchema: FormSchemaGetter = () => [
|
||||
{
|
||||
component: 'Input',
|
||||
fieldName: 'libCode',
|
||||
label: '人员库编码',
|
||||
},
|
||||
{
|
||||
component: 'Input',
|
||||
fieldName: 'libName',
|
||||
label: '人员库名称',
|
||||
},
|
||||
{
|
||||
component: 'Input',
|
||||
fieldName: 'libDesc',
|
||||
label: '人员库描述',
|
||||
},
|
||||
|
||||
{
|
||||
component: 'Select',
|
||||
componentProps: {},
|
||||
componentProps: {
|
||||
getPopupContainer,
|
||||
options: getDictOptions(DictEnum.SIS_LIB_TYPE),
|
||||
},
|
||||
fieldName: 'libType',
|
||||
label: '库类型',
|
||||
},
|
||||
{
|
||||
component: 'Select',
|
||||
componentProps: {},
|
||||
fieldName: 'busiType',
|
||||
label: '业务类型',
|
||||
},
|
||||
];
|
||||
|
||||
// 需要使用i18n注意这里要改成getter形式 否则切换语言不会刷新
|
||||
// export const columns: () => VxeGridProps['columns'] = () => [
|
||||
export const columns: VxeGridProps['columns'] = [
|
||||
{ type: 'checkbox', width: 60 },
|
||||
{
|
||||
title: '主键id',
|
||||
field: 'id',
|
||||
},
|
||||
|
||||
{
|
||||
title: '人员库编码',
|
||||
field: 'libCode',
|
||||
@@ -52,25 +42,13 @@ export const columns: VxeGridProps['columns'] = [
|
||||
field: 'libDesc',
|
||||
},
|
||||
{
|
||||
title: '库类型,1:人员库,2:工服库',
|
||||
title: '库类型',
|
||||
field: 'libType',
|
||||
},
|
||||
{
|
||||
title: '库的业务类型 1: 门禁库,2: 黑名单库',
|
||||
/* {
|
||||
title: '业务类型',
|
||||
field: 'busiType',
|
||||
},
|
||||
{
|
||||
title: '创建人id',
|
||||
field: 'createById',
|
||||
},
|
||||
{
|
||||
title: '更新人id',
|
||||
field: 'updateById',
|
||||
},
|
||||
{
|
||||
title: '搜索值',
|
||||
field: 'searchValue',
|
||||
},
|
||||
},*/
|
||||
{
|
||||
field: 'action',
|
||||
fixed: 'right',
|
||||
@@ -81,21 +59,6 @@ export const columns: VxeGridProps['columns'] = [
|
||||
];
|
||||
|
||||
export const modalSchema: FormSchemaGetter = () => [
|
||||
{
|
||||
label: '主键id',
|
||||
fieldName: 'id',
|
||||
component: 'Input',
|
||||
dependencies: {
|
||||
show: () => false,
|
||||
triggerFields: [''],
|
||||
},
|
||||
},
|
||||
{
|
||||
label: '人员库编码',
|
||||
fieldName: 'libCode',
|
||||
component: 'Input',
|
||||
rules: 'required',
|
||||
},
|
||||
{
|
||||
label: '人员库名称',
|
||||
fieldName: 'libName',
|
||||
@@ -111,12 +74,15 @@ export const modalSchema: FormSchemaGetter = () => [
|
||||
label: '库类型',
|
||||
fieldName: 'libType',
|
||||
component: 'Select',
|
||||
componentProps: {},
|
||||
componentProps: {
|
||||
getPopupContainer,
|
||||
options: getDictOptions(DictEnum.SIS_LIB_TYPE),
|
||||
},
|
||||
},
|
||||
{
|
||||
/* {
|
||||
label: '业务类型',
|
||||
fieldName: 'busiType',
|
||||
component: 'Select',
|
||||
componentProps: {},
|
||||
},
|
||||
},*/
|
||||
];
|
||||
|
Reference in New Issue
Block a user