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
| import type { VxeGridProps } from 'src/adapter/vxe-table';
| import type { FormSchemaGetter } from "src/adapter/form";
|
|
| export const querySchema: FormSchemaGetter = () => [
| {
| component: 'Input',
| fieldName: 'roleName',
| label: '名称',
| },
|
| {
| component: 'Select',
| fieldName: 'roleSort',
| label: '创建人',
| },
| {
| component: 'RangePicker',
| fieldName: 'createTime',
| label: '创建时间',
| },
| ];
| export const columns: VxeGridProps['columns'] = [
| { type: 'checkbox', width: 60 },
| {
| title: '名称',
| field: 'roleName',
| },
| {
| title: '创建人',
| field: 'roleSort',
| },
| {
| title: '创建时间',
| field: 'createTime',
| },
| {
| field: 'action',
| fixed: 'right',
| slots: { default: 'action' },
| title: '操作',
| width: 180,
| },
| ];
|
|