Files
li 1b24994e74 feat: 后端全量更新 - 含所有本次需求
- 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: 新闻自动采集脚本
2026-03-30 20:16:32 +08:00

85 lines
3.3 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: 'kefu/csrkpi/index' + location.search,
add_url: 'kefu/csrkpi/add',
edit_url: 'kefu/csrkpi/edit',
del_url: 'kefu/csrkpi/del',
multi_url: 'kefu/csrkpi/multi',
table: 'kefu_csr_config',
}
});
var table = $("#table");
// 初始化表格
table.bootstrapTable({
url: $.fn.bootstrapTable.defaults.extend.index_url,
pk: 'id',
sortName: 'id',
columns: [
[
{checkbox: true},
{field: 'id', title: __('Id')},
{field: 'admin.nickname', title: __('Admin_id')},
{field: 'ceiling', title: __('Ceiling'), sortable: true},
{field: 'reception_count', title: __('Reception_count'), sortable: true},
{field: 'sum_message_count', title: __('sum_message_count')},
{field: 'sum_reception_count', title: __('sum_reception_count')},
{
field: 'last_reception_time',
title: __('Last_reception_time'),
operate: 'RANGE',
addclass: 'datetimerange',
formatter: Table.api.formatter.datetime,
sortable: true
},
{
field: 'keep_alive',
title: __('Keep Alive'),
searchList: {"0": __('关'), "1": __('开')},
formatter: Table.api.formatter.status
},
{
field: 'status',
title: __('Status'),
searchList: {
"0": __('Status 0'),
"1": __('Status 1'),
"2": __('Status 2'),
"3": __('Status 3')
},
formatter: Table.api.formatter.status
},
{
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;
});