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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
| export const tableOption = {
| searchMenuSpan: 6,
| columnBtn: false,
| border: true,
| selection: true,
| index: false,
| indexLabel: "序号",
| stripe: true,
| menuAlign: "center",
| menuWidth: 180,
| align: "center",
| refreshBtn: true,
| searchSize: "mini",
| addBtn: false,
| editBtn: false,
| delBtn: false,
| viewBtn: false,
| emptyBtn: true,
| props: {
| label: "label",
| value: "value",
| },
| column: [
| {
| label: "ID",
| prop: "userCode",
| },
| {
| label: "申购单号",
| prop: "orderNo",
| search: true,
| },
| {
| label: "申购状态",
| prop: "status",
| type: "select",
| dicData: [
| {
| label: "申购中",
| value: 1,
| },
| {
| label: "已中签",
| value: 2,
| },
| {
| label: "未中签",
| value: 3,
| },
| ],
| search: true,
| },
| {
| label: "用户名",
| prop: "userName",
| search: true,
| },
| {
| label: "推荐人",
| prop: "recomUserName",
| },
| {
| label: "实名",
| prop: "realName",
| },
| {
| label: "股票名称",
| prop: "symbolName",
| search: true,
| },
| {
| label: "股票代码",
| prop: "symbolCode",
| search: true,
| },
| {
| label: "申购价格",
| prop: "subPrice",
| },
| {
| label: "申购股数",
| prop: "subNumber",
| },
| {
| label: "中签数量",
| prop: "winningNumber",
| },
| {
| label: "申购需认缴",
| prop: "requiredSubscribe",
| },
| {
| label: "中签应认缴",
| prop: "requiredNumber",
| },
| {
| label: "认缴次数",
| prop: "userPromiseCount",
| },
| {
| label: "已认缴次数",
| prop: "subscribedCount",
| },
| {
| label: "已认缴金额",
| prop: "subscribedAmount",
| },
| {
| label: "需补缴金额",
| prop: "needPayAmount",
| formatter: (row) => {
| const requiredNumber = parseFloat(row.requiredNumber) || 0;
| const subscribedAmount = parseFloat(row.subscribedAmount) || 0;
| return (requiredNumber - subscribedAmount).toFixed(2);
| },
| },
| {
| label: "申购时间",
| prop: "createTime",
| },
| ],
| };
|
|