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
124
125
126
127
128
129
130
131
132
export const tableOption = {
  searchMenuSpan: 6,
  columnBtn: false,
  border: true,
  selection: false,
  index: false,
  indexLabel: '序号',
  stripe: true,
  menuAlign: 'center',
  searchSpan:7,
  searchLabelWidth:160,
  searchMenuSpan:3,
  menuWidth: 240,
  align: 'center',
  refreshBtn: true,
  searchSize: 'mini',
  addBtn: false,
  editBtn: false,
  emptyBtn:false,
  delBtn: false,
  viewBtn: false,
  menu:true,
  props: {
    label: 'label',
    value: 'value'
  },
  column: [{
    label: '承兑商昵称',
    prop: 'nick_name',
  }, {
    label: '承兑商头像',
    prop: 'img',
    solt:true,
  }, {
    label: '用户名',
    prop: 'user_name',
    search: false
  }, {
    label: '承兑商UID',
    prop: 'c2c_user_code',
    placeholder:'    承兑商昵称、承兑商UID',
    search: true
  }, {
    label: '承兑商类型',
    prop: 'c2c_user_type',
    type: 'select',
    search: true,
    dicData:[{
      label:'后台承兑商',
      value:1
    },{
      label:'用户承兑商',
      value:2
    }]
  }, {
    label: '用户名UID',
    prop: 'user_code',
    placeholder:'    承用户名、用户UID',
    search: true,
  }, {
    label: '买卖方式',
    prop: 'direction',
    type: 'select',
    search: true,
    dicData:[{
      label:'买入',
      value:'buy'
    },{
      label:'卖出',
      value:'sell'
    }]
  }, {
    label: '支付币种',
    prop: 'currency',
  }, {
    label: '上架币种',
    prop: 'symbol',
  }, {
    label: '支付方式',
    prop: 'pay_typeM',
    solt:true,
  },  {
    searchslot: true,
    showColumn: false,
    type: 'select',
    label: '支付币种',
    prop: 'nnh',
    search:true,
    hide:true
  }, {
    searchslot: true,
    showColumn: false,
    type: 'select',
    label: '上架币种',
    prop: 'nmh',
    search:true,
    hide:true
  },{
    label: '币种单价',
    prop: 'symbol_value'
  }, {
    label: '币种数量',
    prop: 'coin_amount'
  }, {
    label: '单笔订单限额',
    prop: 'investment_max'
  }, {
    label: '保证金',
    prop: 'deposit_open'
  }, {
    label: '是否上架',
    prop: 'on_sale',
    type: 'select',
    dicData:[{
      label:'下架',
      value:0
    },{
      label:'上架',
      value:1
    }]
  }, {
    label: '创建时间',
    prop: 'create_time'
  }, {
    label: '更多信息',
    prop: 'nth',
    solt:true,
  },{
    label: '备注',
    prop: 'remark'
  }]
}