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
| import type { VxeGridProps } from '#/adapter/vxe-table';
|
|
|
| export const columns: VxeGridProps['columns'] = [
| { type: 'checkbox', width: 60, fixed: 'left' },
| {
| title: '操作用户',
| field: 'operaUser',
| width: 160,
| },
| {
| title: '操作',
| field: 'opera',
| width: 100,
| },
| {
| title: '操作结果',
| field: 'operaResult',
| width: 160,
| },
| {
| title: '',
| field: 'blank',
| minWidth: 100,
| }
| ];
|
|