车间能级提升-智能设备管理系统
zhuguifei
2025-02-27 ec4d16c8a630960a4671a60f4d1957fd3de9def3
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,
  }
];