新版交易所前段管理后台
1
PC-20250623MANY\Administrator
2025-10-17 15a0e50e48ef7c165140f3bf315a0a7f9ee742c3
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
export const tableOption = {
  searchMenuSpan: 6,
  searchLabelWidth:120,
  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,
  menu:false,
  props: {
    label: 'label',
    value: 'value'
  },
  column: [{
    label: 'ID',
    prop: 'purchasingId',
  }, {
    label: 'UID',
    prop: 'uuid',
  }, {
    label: '用户名',
    prop: 'userName',
    placeholder:'用户名UID',
    search: true,
  }, {
    label: '认购付款币种数量',
    prop: 'payCurrencyQuantity',
    search: false,
  }, {
    label: '支付币种',
    prop: 'payCurrency',
  }, {
    label: '申购时间',
    prop: 'subscriptionStartTime'
  }, {
    label: '所属项目种类',
    prop: 'projectTypeName'
  }, {
    label: '申购项目名称',
    prop: 'projectName'
  }, {
    label: '申购项目币种数量',
    prop: 'currencyQuantity'
  }]
}