|
@@ -2,7 +2,7 @@ import {FilterGroupMap, MapValue} from '@components';
|
|
|
import {contextState} from '../context';
|
|
|
|
|
|
export const sourceMap: FilterGroupMap<typeof contextState> = new Map([
|
|
|
- ['1', {label: '真实姓名', type: 'field', value: 'realName'}],
|
|
|
+ ['1', {label: '用户编号', type: 'field', value: 'code'}],
|
|
|
['2', {label: '所在部门', type: 'keySelect', value: 'department', selectKey: '部门字典'}],
|
|
|
['3', {label: '角色名称', type: 'field', value: 'role'}],
|
|
|
['4', {label: '邮箱', type: 'field', value: 'email'}],
|
|
@@ -10,6 +10,6 @@ export const sourceMap: FilterGroupMap<typeof contextState> = new Map([
|
|
|
]);
|
|
|
|
|
|
export const fixedMap: MapValue<typeof contextState>[] = [
|
|
|
- {label: '用户编号', type: 'field', value: 'code'},
|
|
|
{label: '用户名称', type: 'field', value: 'userName'},
|
|
|
+ {label: '真实姓名', type: 'field', value: 'realName'},
|
|
|
];
|