|
|
@@ -35,8 +35,26 @@ define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefin
|
|
|
// {field: 'frozen_id', title: __('Frozen_id')},
|
|
|
{field: 'tx_hash', title: __('Tx_hash'), operate: 'LIKE'},
|
|
|
{field: 'user_id', title: __('User_id')},
|
|
|
- {field: 'address', title: '账号地址'},
|
|
|
- {field: 'to_address', title: '提现地址'},
|
|
|
+ {field: 'address', title: '账号地址',cellStyle : function(value, row, index, field){
|
|
|
+ return {
|
|
|
+ css: {
|
|
|
+ "white-space": "nowrap",
|
|
|
+ "text-overflow": "ellipsis",
|
|
|
+ "overflow": "hidden",
|
|
|
+ "max-width":"300px"
|
|
|
+ }
|
|
|
+ };
|
|
|
+ }},
|
|
|
+ {field: 'to_address', title: '提现地址',cellStyle : function(value, row, index, field){
|
|
|
+ return {
|
|
|
+ css: {
|
|
|
+ "white-space": "nowrap",
|
|
|
+ "text-overflow": "ellipsis",
|
|
|
+ "overflow": "hidden",
|
|
|
+ "max-width":"300px"
|
|
|
+ }
|
|
|
+ };
|
|
|
+ }},
|
|
|
{field: 'symbol', title: __('Symbol'), operate: 'LIKE'},
|
|
|
{field: 'amount', title: __('Amount'), operate:'BETWEEN'},
|
|
|
{field: 'real_amount', title: __('Real_amount'), operate:'BETWEEN'},
|
|
|
@@ -51,7 +69,9 @@ define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefin
|
|
|
'500': '取消',
|
|
|
}, operate: 'FIND_IN_SET', formatter: Table.api.formatter.label
|
|
|
},
|
|
|
- // {field: 'admin_id', title: __('Admin_id')},
|
|
|
+ {field: 'usdt', title: __('实际到账金额')},
|
|
|
+ {field: 'rate', title: __('汇率')},
|
|
|
+ {field: 'fee', title: __('手续费')},
|
|
|
{field: 'create_time', title: __('Create_time'), operate:'RANGE', addclass:'datetimerange', autocomplete:false, formatter: Table.api.formatter.datetime},
|
|
|
{field: 'update_time', title: __('Update_time'), operate:'RANGE', addclass:'datetimerange', autocomplete:false, formatter: Table.api.formatter.datetime},
|
|
|
{
|