- 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: 新闻自动采集脚本
71 lines
3.6 KiB
JavaScript
Executable File
71 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_detailed/index' + location.search,
|
|
// add_url: 'app/app_detailed/add',
|
|
edit_url: 'app/app_detailed/edit',
|
|
// del_url: 'app/app_detailed/del',
|
|
// multi_url: 'app/app_detailed/multi',
|
|
// import_url: 'app/app_detailed/import',
|
|
table: 'app_detailed',
|
|
}
|
|
});
|
|
|
|
var table = $("#table");
|
|
table.on('load-success.bs.table', function (e, data) {
|
|
//这里可以获取从服务端获取的JSON数据
|
|
//这里我们手动设置底部的值
|
|
$("#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: 'user_name', title:'用户'},
|
|
{field: 'coinname', title:'货币'},
|
|
{field: 'price', title: __('Price'), operate:'BETWEEN'},
|
|
{field: 'cart', title: __('Cart'), searchList: {"1":__('Cart 1'),"2":__('Cart 2')}, formatter: Table.api.formatter.normal},
|
|
{field: 'type', title: __('Type'), searchList: {"1":__('Type 1'),"2":__('Type 2'),"3":__('Type 3'),"4":__('Type 4'),"5":__('Type 5'),"6":__('Type 6'),"7":__('Type 7'),"8":__('Type 8'),"9":__('Type 9'),"10":__('Type 10')}, formatter: Table.api.formatter.normal},
|
|
// {field: 'serial_no', title: __('Serial_no')},
|
|
// {field: 'order_result', title: __('Order_result'), searchList: {"process":__('Process'),"result":__('Result')}, formatter: Table.api.formatter.normal},
|
|
{field: 'description', title: __('Description'), operate: 'LIKE'},
|
|
// {field: 'admin_name', title: __('客户代理')},
|
|
{field: 'createtime', title: __('Createtime'), operate:'RANGE', addclass:'datetimerange', autocomplete:false, formatter: Table.api.formatter.datetime},
|
|
{field: 'notice', title: __('Notice'), operate: 'LIKE'},
|
|
{field: 'hash', title: __('Hash'), operate: 'LIKE'},
|
|
{field: 'before_num', title: __('Before_num'), operate:'BETWEEN'},
|
|
{field: 'after_num', title: __('After_num'), operate:'BETWEEN'},
|
|
// {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;
|
|
}); |