- 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: 新闻自动采集脚本
69 lines
3.6 KiB
JavaScript
Executable File
69 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_ai_coin/index' + location.search,
|
|
add_url: 'app/app_ai_coin/add',
|
|
edit_url: 'app/app_ai_coin/edit',
|
|
del_url: 'app/app_ai_coin/del',
|
|
// multi_url: 'app/app_ai_coin/multi',
|
|
// import_url: 'app/app_ai_coin/import',
|
|
table: 'app_ai_coin',
|
|
}
|
|
});
|
|
|
|
var table = $("#table");
|
|
|
|
// 初始化表格
|
|
table.bootstrapTable({
|
|
url: $.fn.bootstrapTable.defaults.extend.index_url,
|
|
pk: 'id',
|
|
sortName: 'weigh',
|
|
columns: [
|
|
[
|
|
{checkbox: true},
|
|
{field: 'id', title: __('Id')},
|
|
{field: 'coinname', title: __('Coinname'), operate: 'LIKE'},
|
|
{field: 'symbol', title: __('Symbol'), operate: 'LIKE'},
|
|
{field: 'precision', title: '交易精度', operate: 'LIKE'},
|
|
{field: 'price_precision', title: '价格精度', operate: 'LIKE'},
|
|
{field: 'image', title: '币种图', operate: false, events: Table.api.events.image, formatter: Table.api.formatter.image},
|
|
{field: 'type', title: __('Type'), searchList: {"1":__('Type 1'),"2":__('Type 2')}, operate:'FIND_IN_SET', formatter: Table.api.formatter.label},
|
|
{field: 'coin_type', title: '币种类型', searchList: {"1":'精选币种',"2":'多空币种'}, operate:'FIND_IN_SET', formatter: Table.api.formatter.label},
|
|
// {field: 'coin_desc', title: '币种描述', operate: 'LIKE'},
|
|
{field: 'status', title: __('Status'), searchList: {"0":__('Status 0'),"1":__('Status 1')}, formatter: Table.api.formatter.status},
|
|
{field: 'price', title: __('Price'), operate:'BETWEEN'},
|
|
// {field: 'exchange_id', title: __('Exchange_id')},
|
|
{field: 'weigh', title: __('Weigh')},
|
|
{field: 'high', title: __('High'), operate:'BETWEEN'},
|
|
{field: 'close', title: __('Close'), operate:'BETWEEN'},
|
|
{field: 'low', title: __('Low'), operate:'BETWEEN'},
|
|
{field: 'open', title: __('Open'), operate:'BETWEEN'},
|
|
{field: 'increase', title: __('Increase')},
|
|
{field: 'createtime', title: __('Createtime'), operate:'RANGE', addclass:'datetimerange', formatter: Table.api.formatter.datetime},
|
|
{field: 'updatetime', title: __('Updatetime'), operate:'RANGE', addclass:'datetimerange', formatter: Table.api.formatter.datetime},
|
|
{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;
|
|
}); |