1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
| import type { VbenFormSchema } from '#/adapter/form';
| import type { VxeTableGridOptions } from '#/adapter/vxe-table';
| import type { HrmAttendanceRecordApi } from '#/api/hrm/attendance/record';
|
| import { DICT_TYPE } from '#/packages/constants/src';
| import { getDictOptions } from '#/packages/effects/hooks/src';
|
| import { getDeptList } from '#/api/system/dept';
| import { handleTree } from '#/packages/utils/src';
|
| /** 列表的搜索表单 */
| export function useGridFormSchema(): VbenFormSchema[] {
| return [
| {
| fieldName: 'userName',
| label: '员工姓名',
| component: 'Input',
| componentProps: {
| allowClear: true,
| placeholder: '请输入员工姓名',
| },
| },
| {
| fieldName: 'date',
| label: '考勤日期',
| component: 'RangePicker',
| componentProps: {
| allowClear: true,
| valueFormat: 'YYYY-MM-DD',
| style: { width: '100%' },
| },
| },
| {
| fieldName: 'deptId',
| label: '部门',
| component: 'ApiTreeSelect',
| componentProps: {
| api: async () => {
| const data = await getDeptList();
| return handleTree(data);
| },
| labelField: 'name',
| valueField: 'id',
| childrenField: 'children',
| allowClear: true,
| placeholder: '请选择部门',
| treeDefaultExpandAll: true,
| },
| },
| {
| fieldName: 'clockInType',
| label: '上班打卡类型',
| component: 'Select',
| componentProps: {
| allowClear: true,
| options: getDictOptions(DICT_TYPE.HRM_CLOCK_TYPE, 'number'),
| placeholder: '请选择上班打卡类型',
| },
| },
| {
| fieldName: 'clockOutType',
| label: '下班打卡类型',
| component: 'Select',
| componentProps: {
| allowClear: true,
| options: getDictOptions(DICT_TYPE.HRM_CLOCK_TYPE, 'number'),
| placeholder: '请选择下班打卡类型',
| },
| },
| ];
| }
|
| /** 列表的字段 */
| export function useGridColumns(): VxeTableGridOptions<HrmAttendanceRecordApi.AttendanceRecord>['columns'] {
| return [
| { field: 'userName', title: '员工姓名', minWidth: 100 },
| { field: 'deptName', title: '部门', minWidth: 120 },
| { field: 'date', title: '考勤日期', width: 110 },
| { field: 'clockInTime', title: '上班打卡时间', width: 160 },
| {
| field: 'clockInType',
| title: '上班打卡类型',
| width: 100,
| cellRender: {
| name: 'CellDict',
| props: { type: DICT_TYPE.HRM_CLOCK_TYPE },
| },
| },
| { field: 'clockOutTime', title: '下班打卡时间', width: 160 },
| {
| field: 'clockOutType',
| title: '下班打卡类型',
| width: 100,
| cellRender: {
| name: 'CellDict',
| props: { type: DICT_TYPE.HRM_CLOCK_TYPE },
| },
| },
| { field: 'workHours', title: '工作时长(h)', width: 100 },
| { field: 'overtimeHours', title: '加班时长(h)', width: 100 },
| { field: 'location', title: '打卡地点', minWidth: 150 },
| {
| field: 'dataSource',
| title: '数据来源',
| width: 100,
| },
| {
| title: '操作',
| width: 120,
| fixed: 'right',
| slots: {
| default: 'actions',
| },
| },
| ];
| }
|
|