ludc
2023-07-04 1f238ae264c0dfca87bba9ea9da5456153991eaa
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
export default {
    height:'auto',
    calcHeight: 30,
    tip: false,
    editBtn: false,
    addBtn: false,
    searchShow: true,
    searchMenuSpan: 5,
    disablePage: false,
    border: true,
    index: true,
    viewBtn: false,
    selection: true,
    menuWidth:260,
    dialogClickModal: false,
    refreshBtn: true,
    columnBtn: false,
    searchShowBtn: false,
    highlightCurrentRow: true, //行选中时高亮
    rowKey: "oid", //行数据的 Key,用来优化 Table 的渲染
    column: [
      {
        label: "码段编号",
        prop: "id",
        search: true,
        searchLabelWidth: 80,
        searchSpan: 6,
        sortable: true,
      },
      {
        label: "码段名称",
        prop: "name",
        search: true,
        searchLabelWidth: 80,
        searchSpan: 6,
        sortable: true,
      },
      {
        label: "码段描述",
        prop: "description",
        search: false,
        span: 24,
      },
      {
        label: "码段类型",
        prop: "secTypeText",
      }
 
    ]
}