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
| export const tableOption = {
| searchMenuSpan: 6,
| columnBtn: false,
| border: true,
| selection: false,
| index: false,
| indexLabel: '序号',
| stripe: true,
| menuAlign: 'center',
| menuWidth: 150,
| align: 'center',
| refreshBtn: true,
| searchSize: 'mini',
| addBtn: false,
| editBtn: false,
| delBtn: false,
| viewBtn: false,
| menu:true,
| props: {
| label: 'label',
| value: 'value'
| },
| column: [{
| label: '币种',
| prop: 'coin',
| search: true
| }, {
| label: '链',
| prop: 'blockchain_name',
| search: false
| }, {
| label: '地址',
| prop: 'address',
| search: false
| }, ]
| }
|
|