|
|
@@ -24,12 +24,31 @@ define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefin
|
|
|
[
|
|
|
{checkbox: true},
|
|
|
{field: 'id', title: __('Id'), operate: false},
|
|
|
+ {
|
|
|
+ field: 'welfarereda.title',
|
|
|
+ title: __('福利兑换'),
|
|
|
+ operate: false,
|
|
|
+ formatter : function(value, row, index, field){
|
|
|
+ return "<span style='display: block;overflow: hidden;text-overflow: ellipsis;white-space: nowrap;' title='" + row.title + "'>" + value + "</span>";
|
|
|
+ },
|
|
|
+ cellStyle : function(value, row, index, field){
|
|
|
+ return {
|
|
|
+ css: {
|
|
|
+ "white-space": "nowrap",
|
|
|
+ "text-overflow": "ellipsis",
|
|
|
+ "overflow": "hidden",
|
|
|
+ "max-width":"150px"
|
|
|
+ }
|
|
|
+ };
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {field: 'order_no', title: __('Order_no'), operate: 'LIKE'},
|
|
|
{field: 'order_no', title: __('Order_no'), operate: 'LIKE'},
|
|
|
{field: 'tx_hash', title: __('Tx_hash'), operate: 'LIKE'},
|
|
|
{field: 'users.address', title: __('User_id'),operate: 'LIKE'},
|
|
|
{field: 'symbol', title: __('Symbol'), operate: false},
|
|
|
{field: 'amount', title: __('Amount'), operate:false},
|
|
|
- {field: 'products.zh_name', title: __('Product_id'), operate:'LIKE'},
|
|
|
+ {field: 'product_id', title: __('发放产品ID'), operate:'LIKE'},
|
|
|
{field: 'from_address', title: __('From_address'), operate: 'LIKE'},
|
|
|
{field: 'to_address', title: __('To_address'), operate: 'LIKE'},
|
|
|
{field: 'status', title: __('Status'), searchList: {
|