田源
2025-01-16 a13255b4129ee8a7a7b7e1ecd8e02dd2c78f7c17
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
export const column = [
  {
    label: '名称',
    prop: 'id',
    sortable: true,
  },
  {
    label: '标签',
    prop: 'name',
    sortable: true,
  },
  {
    label: '跳跃字符',
    prop: 'jumpCharacter',
    sortable: true,
  },
  {
    label: '初始值',
    prop: 'initialValue',
    sortable: true,
  },
  {
    label: '前缀',
    prop: 'prefixion',
    sortable: true,
  },
  {
    label: '后缀',
    prop: 'suffix',
    sortable: true,
  },
  {
    label: '描述',
    prop: 'description',
    overHidden:true,
  },
];