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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
| 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: 'ID',
| prop: 'idCode',
| },
| // {
| // searchslot: true,
| // showColumn: false,
| // label: '项目名称',
| // type: 'select',
| // prop: 'ndh',
| // search:true,
| // hide:true
| // },
| {
| label: '项目总类',
| prop: 'projectTypeName',
| },{
| label: '项目名称',
| prop: 'projectName',
| search:true,
|
| }, {
| label: '数据源类别',
| prop: 'dataType',
| type: 'select',
| dicData:[{
| label:'机器人刷单',
| value:1
| },{
| label:'第三方数据采集',
| value:2
| }]
| }, {
| label: '发行价',
| prop: 'issuePrice'
| }, {
| label: '接受申购的币种',
| prop: 'currency'
| }, {
| label: '预计上线时间',
| prop: 'expectedLaunchTime'
| }, {
| label: '开始申购时间',
| prop: 'subscriptionStartTime'
| }, {
| label: '结束申购时间',
| prop: 'subscriptionEndTime'
| }, {
| label: '公布结果时间',
| prop: 'publishTime'
| }, {
| label: '最小申购数量',
| prop: 'minQuantity'
| }, {
| label: '最大申购数量',
| prop: 'maxQuantity'
| }, {
| label: '简况F10',
| prop: 'amountAfter',
| slot:true,
| }, {
| label: '白皮书地址',
| prop: 'whitePagerAddress'
| }]
| }
|
|