10.10综合交易所原始源码-管理后台
admin
2026-01-06 a3cc41349752d6fb067df2a58e4e4b723a915f21
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
123
export const tableOption = {
  searchMenuSpan: 6,
  columnBtn: false,
  border: true,
  selection: false,
  index: false,
  indexLabel: '序号',
  stripe: true,
  menuAlign: 'center',
  menuWidth: 350,
  align: 'center',
  refreshBtn: false,
  searchSize: 'mini',
  addBtn: false,
  editBtn: false,
  delBtn: false,
  viewBtn: false,
  menu:false,
  props: {
    label: 'label',
    value: 'value'
  },
  column: [{
    label: '用户',
    prop: '',
 
    children: [{
      label: '用户名',
      prop: 'username',
      search: true,
      placeholder:"用户名、UID",
    }, {
      label: 'UID',
      prop: 'UID',
      display:false
    }, {
      label: '用户数',
      prop: 'reco_member',
      slot:true,
    }, {
      label: '代理数',
      prop: 'reco_agent',
      display:false
    }]
  },{
    label: '开始时间',
    prop: 'startTime',
    type: "datetime",
    search: true,
    viewDisplay: false,
    hide: true,
    format: "yyyy-MM-dd HH:mm:ss", // 组件展示的日期格式
    valueFormat:"yyyy-MM-dd HH:mm:ss", // 组件vue值
  },
  {
    label: '结束时间',
    prop: 'endTime',
    type: "datetime",
    format: "yyyy-MM-dd HH:mm:ss",
    valueFormat:"yyyy-MM-dd HH:mm:ss",
    hide: true,
    searchClearble:false,
    search: true,
    viewDisplay: false,
  }, {
    label: '充提',
    prop: 'remark',
    // search: true,
    children: [{
      label: '充值',
      prop: 'age',
      display:false,
      children: [{
        label: 'USDT',
        prop: 'recharge_usdt',
        display:false
      }, {
        label: 'ETH',
        prop: 'recharge_eth',
        display:false
      }, {
        label: 'BTC',
        prop: 'recharge_btc',
        display:false
      }, {
        label: 'USDC',
        prop: 'recharge_usdc',
        display:false
      }]
    },{
      label: '提现',
      prop: 'phone',
      display:false,
      children: [{
        label: 'USDT',
        prop: 'withdraw',
        display:false
      }, {
        label: 'ETH',
        prop: 'withdraw_eth',
        display:false
      }, {
        label: 'BTC',
        prop: 'withdraw_btc',
        display:false
      },{
        label: 'USDC',
        prop: 'withdraw_usdc',
        display:false
      }]
    }]
  }, {
    label: '交易盈亏(ETF)',
    prop: 'business_profit'
  },{
    label: '手续费(ETF)',
    prop: 'totle_fee'
    // search: true
  }, {
    label: '总收益(ETF)',
    prop: 'totle_income'
  }]
}