- 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: 新闻自动采集脚本
100 lines
5.4 KiB
JavaScript
Executable File
100 lines
5.4 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_rate/index' + location.search,
|
|
add_url: 'app/app_rate/add',
|
|
edit_url: 'app/app_rate/edit',
|
|
del_url: 'app/app_rate/del',
|
|
// multi_url: 'app/app_rate/multi',
|
|
// import_url: 'app/app_rate/import',
|
|
table: 'app_rate',
|
|
}
|
|
});
|
|
|
|
var table = $("#table");
|
|
|
|
// 初始化表格
|
|
table.bootstrapTable({
|
|
url: $.fn.bootstrapTable.defaults.extend.index_url,
|
|
pk: 'id',
|
|
sortName: 'weigh',
|
|
columns: [
|
|
[
|
|
{checkbox: true},
|
|
{field: 'id', title: __('Id')},
|
|
{field: 'name', title: __('Name'), operate: 'LIKE'},
|
|
{field: 'nickname', title: __('Nickname'), operate: 'LIKE'},
|
|
{field: 'coinname', title: __('Coinname'), operate: 'LIKE'},
|
|
{field: 'symbol', title: __('Symbol'), operate: 'LIKE'},
|
|
{field: 'amount', title: __('Amount'), operate:'BETWEEN'},
|
|
{field: 'is_zqtrade', title: __('Is_zqtrade'), searchList: {"0":__('Is_zqtrade 0'),"1":__('Is_zqtrade 1')}, 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: 'high', title: __('High'), operate:'BETWEEN'},
|
|
{field: 'low', title: __('Low'), operate:'BETWEEN'},
|
|
{field: 'open', title: __('Open'), operate:'BETWEEN'},
|
|
{field: 'close', title: __('Close'), operate:'BETWEEN'},
|
|
{field: 'usdt', title: __('Usdt'), operate:'BETWEEN'},
|
|
{field: 'rmb', title: __('Rmb'), operate:'BETWEEN'},
|
|
{field: 'increase', title: __('Increase'), operate:'BETWEEN'},
|
|
{field: 'weigh', title: __('Weigh'), operate: false},
|
|
{field: 'updatetime', title: __('Updatetime'), operate:'RANGE', addclass:'datetimerange', autocomplete:false, formatter: Table.api.formatter.datetime},
|
|
{field: 'jd', title: __('Jd')},
|
|
{field: 'logo_image', title: __('Logo_image'), operate: false, events: Table.api.events.image, formatter: Table.api.formatter.image},
|
|
{field: 'cover_image', title: __('资讯封面图'), operate: false, events: Table.api.events.image, formatter: Table.api.formatter.image},
|
|
{field: 'level', title: __('Level')},
|
|
{field: 'count_price', title: __('Count_price'), operate:'BETWEEN'},
|
|
{field: 'liutong_num', title: __('Liutong_num'), operate:'BETWEEN'},
|
|
{field: 'gongji_num', title: __('Gongji_num'), operate:'BETWEEN'},
|
|
{field: 'count_num', title: __('Count_num'), operate:'BETWEEN'},
|
|
{field: 'faxin_time', title: __('Faxin_time'), operate:'RANGE', addclass:'datetimerange', autocomplete:false, formatter: Table.api.formatter.datetime},
|
|
{field: 'faxin_price', title: __('Faxin_price'), operate:'BETWEEN'},
|
|
{field: 'market_jd', title: __('交易精度')},
|
|
{field: 'price_jd', title: __('价格精度')},
|
|
{field: 'qukuai', title: __('Qukuai'), operate: 'LIKE'},
|
|
{
|
|
field: 'operate', title: __('Operate'),
|
|
table: table,
|
|
// buttons: [
|
|
// {
|
|
// name: 'detail',
|
|
// title: '调整价格',
|
|
// text: '调整价格',
|
|
// classname: 'btn btn-xs btn-success btn-dialog',
|
|
// icon: 'fa fa-list',
|
|
// url: 'app/app_rate/get_ctrl',
|
|
// callback: function (data) {
|
|
// Layer.alert("接收到回传数据:" + JSON.stringify(data), {title: "回传数据"});
|
|
// }
|
|
// },
|
|
// ],
|
|
events: Table.api.events.operate,
|
|
formatter: Table.api.formatter.operate
|
|
}
|
|
]
|
|
]
|
|
});
|
|
|
|
// 为表格绑定事件
|
|
Table.api.bindevent(table);
|
|
},
|
|
add: function () {
|
|
Controller.api.bindevent();
|
|
},
|
|
edit: function () {
|
|
Controller.api.bindevent();
|
|
},
|
|
get_ctrl: function () {
|
|
Controller.api.bindevent();
|
|
},
|
|
api: {
|
|
bindevent: function () {
|
|
Form.api.bindevent($("form[role=form]"));
|
|
}
|
|
}
|
|
};
|
|
return Controller;
|
|
}); |