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
| export const tableOption = {
| searchMenuSpan: 6,
| columnBtn: false,
| border: true,
| selection: false,
| index: false,
| indexLabel: '序号',
| stripe: true,
| menuAlign: 'center',
| menuWidth: 130,
| 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: 'uuid'
| }, {
| label: '买订单号',
| prop: 'symbol'
| }, {
| label: '卖订单号',
| prop: 'symbol'
| }, {
| label: '买家用户名/ID',
| prop: 'name'
| }, {
| label: '卖家用户名/ID',
| prop: 'MinimumTradingVolume'
| }, {
| label: '成交价格',
| prop: 'RandomFactorOfTradingVolume'
| }, {
| label: '币对',
| prop: 'CurrencyPricePrecision'
| }, {
| label: '交易量',
| prop: 'CurrencyQuantityPrecision'
| }, {
| label: '交易额',
| prop: 'MaximumPriceDifferenceBetweenBuyingAndSellingOrders'
| }, {
| label: '买单手续费',
| prop: 'InitialNumberOfOrders'
| }, {
| label: '卖单手续费',
| prop: 'StepSizeOfPriceChange'
| }, {
| label: '创建时间',
| prop: 'OrderInterval'
| }]
| }
|
|