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
| export const tableOption = {
| searchMenuSpan: 6,
| columnBtn: false,
| border: true,
| selection: false,
| index: false,
| indexLabel: '序号',
| stripe: true,
| menuAlign: 'center',
| menuWidth: 350,
| align: 'center',
| refreshBtn: true,
| searchSize: 'mini',
| addBtn: false,
| editBtn: false,
| delBtn: false,
| viewBtn: false,
| emptyBtn:false,
| // emptyFn: this.handleEmpty, // 清空按钮的回调函数
| menu:true,
| props: {
| label: 'label',
| value: 'value'
| },
| column: [
| {
| label: '标题',
| prop: 'title',
| search: true
| },
| {
| searchslot: true,
| showColumn: false,
| type: 'select',
| label: '语言',
| prop: 'ndh',
| search:true,
| hide:true
| },{
| label: '语言',
| prop: 'languageText'
| }, {
| label: '业务代码',
| prop: 'contentCode',
| search: true
| }]
| }
|
|