- Contract.php: 返回合约账户余额(balance_contract) - My.php: 地址管理增加BTC/ETH - AppContract.php: 一键平仓(closeall) - AppProxy.php: 代理专属注册链接 + 分级权限(L1/L2) - site.php: 手续费减半(0.018→0.009) - agent_permission_setup.sql: 代理权限SQL - crypto_news_crawler.py: 新闻自动采集脚本
73 lines
3.6 KiB
JavaScript
Executable File
73 lines
3.6 KiB
JavaScript
Executable File
define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefined, Backend, Table, Form) {
|
|
|
|
var Controller = {
|
|
index: function () {
|
|
// 初始化表格参数配置
|
|
Table.api.init({
|
|
extend: {
|
|
index_url: 'app/app_widthdraw/index' + location.search,
|
|
// add_url: 'app/app_widthdraw/add',
|
|
edit_url: 'app/app_widthdraw/edit',
|
|
// del_url: 'app/app_widthdraw/del',
|
|
// multi_url: 'app/app_widthdraw/multi',
|
|
// import_url: 'app/app_widthdraw/import',
|
|
table: 'app_widthdraw',
|
|
}
|
|
});
|
|
|
|
var table = $("#table");
|
|
table.on('load-success.bs.table', function (e, data) {
|
|
//这里可以获取从服务端获取的JSON数据
|
|
console.log(data);
|
|
//这里我们手动设置底部的值
|
|
$("#money").text(data.count_price);
|
|
});
|
|
|
|
// 初始化表格
|
|
table.bootstrapTable({
|
|
url: $.fn.bootstrapTable.defaults.extend.index_url,
|
|
pk: 'id',
|
|
sortName: 'id',
|
|
columns: [
|
|
[
|
|
{checkbox: true},
|
|
{field: 'id', title: __('Id')},
|
|
{field: 'daili_name', title: __('所属代理'), operate: 'LIKE'},
|
|
{field: 'user_id', title: '用户ID'},
|
|
{field: 'nickname', title: __('用户')},
|
|
{field: 'address', title: __('Address'), operate: 'LIKE'},
|
|
{field: 'bank_name', title: __('开户行'), operate: 'LIKE'},
|
|
{field: 'bank_user', title: __('收款人'), operate: 'LIKE'},
|
|
{field: 'card_num', title: __('银行卡号'), operate: 'LIKE'},
|
|
{field: 'bank_code', title: __('银行代码'), operate: 'LIKE'},
|
|
{field: 'curr_name', title: __('币种')},
|
|
{field: 'num', title: __('Num'), operate:'BETWEEN'},
|
|
{field: 'fee', title: __('Fee'), operate:'BETWEEN'},
|
|
{field: 'real_num', title: __('Real_num'), operate:'BETWEEN'},
|
|
{field: 'status', title: __('Status'), searchList: {"2":__('Status 2'),"1":__('Status 1'),"0":__('Status 0')}, formatter: Table.api.formatter.status},
|
|
{field: 'description', title: __('Description'), operate: 'LIKE'},
|
|
{field: 'add_time', title: __('Add_time'), operate:'RANGE', addclass:'datetimerange', autocomplete:false, formatter: Table.api.formatter.datetime},
|
|
{field: 'exam_time', title: __('Exam_time'), operate:'RANGE', addclass:'datetimerange', autocomplete:false, formatter: Table.api.formatter.datetime},
|
|
{field: 'hash', title: __('Hash'), operate: 'LIKE'},
|
|
{field: 'operate', title: __('Operate'), table: table, events: Table.api.events.operate, formatter: Table.api.formatter.operate}
|
|
]
|
|
]
|
|
});
|
|
|
|
// 为表格绑定事件
|
|
Table.api.bindevent(table);
|
|
},
|
|
add: function () {
|
|
Controller.api.bindevent();
|
|
},
|
|
edit: function () {
|
|
Controller.api.bindevent();
|
|
},
|
|
api: {
|
|
bindevent: function () {
|
|
Form.api.bindevent($("form[role=form]"));
|
|
}
|
|
}
|
|
};
|
|
return Controller;
|
|
}); |