- 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: 新闻自动采集脚本
62 lines
3.0 KiB
JavaScript
Executable File
62 lines
3.0 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_curr_release/index' + location.search,
|
|
add_url: 'app/app_curr_release/add',
|
|
edit_url: 'app/app_curr_release/edit',
|
|
// del_url: 'app/app_curr_release/del',
|
|
// multi_url: 'app/app_curr_release/multi',
|
|
// import_url: 'app/app_curr_release/import',
|
|
table: 'app_curr_release',
|
|
}
|
|
});
|
|
|
|
var table = $("#table");
|
|
|
|
// 初始化表格
|
|
table.bootstrapTable({
|
|
url: $.fn.bootstrapTable.defaults.extend.index_url,
|
|
pk: 'id',
|
|
sortName: 'id',
|
|
columns: [
|
|
[
|
|
{checkbox: true},
|
|
{field: 'id', title: __('Id')},
|
|
{field: 'name', title: __('Name'), operate: 'LIKE'},
|
|
{field: 'symbol', title: __('Symbol'), operate: 'LIKE'},
|
|
{field: 'logo_image', title: __('Logo_image'), operate: false, events: Table.api.events.image, formatter: Table.api.formatter.image},
|
|
{field: 'status', title: __('Status'), searchList: {"1":__('Status 1'),"2":__('Status 2'),"3":__('Status 3'),"0":__('Status 0')}, formatter: Table.api.formatter.status},
|
|
{field: 'cesi_user', title: __('Cesi_user'), operate: 'LIKE'},
|
|
{field: 'usdt', title: __('Usdt'), operate:'BETWEEN'},
|
|
{field: 'count_num', title: __('Count_num'), operate:'BETWEEN'},
|
|
{field: 'is_bb', title: __('Is_bb'), searchList: {"1":__('Is_bb 1'),"0":__('Is_bb 0')}, formatter: Table.api.formatter.normal},
|
|
{field: 'is_hytrade', title: __('Is_hytrade'), searchList: {"0":__('Is_hytrade 0'),"1":__('Is_hytrade 1')}, formatter: Table.api.formatter.normal},
|
|
{field: 'is_tk', title: __('Is_tk'), searchList: {"1":__('Is_tk 1'),"0":__('Is_tk 0')}, formatter: Table.api.formatter.normal},
|
|
// {field: 'rate_id', title: __('Rate_id')},
|
|
// {field: 'btcron_id', title: __('Btcron_id')},
|
|
{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;
|
|
}); |