123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefined, Backend, Table, Form) {
- var Controller = {
- index: function () {
- // 初始化表格参数配置
- Table.api.init({
- extend: {
- index_url: 'agent/takecash/index' + location.search,
- // add_url: 'agent/takecash/add',
- // edit_url: 'agent/takecash/edit',
- // del_url: 'agent/takecash/del',
- multi_url: 'agent/takecash/multi',
- import_url: 'agent/takecash/import',
- table: 'take_cash',
- }
- });
- var table = $("#table");
- // 初始化表格
- table.bootstrapTable({
- url: $.fn.bootstrapTable.defaults.extend.index_url,
- pk: 'id',
- sortName: 'id',
- // fixedColumns: true,
- // fixedRightNumber: 1,
- columns: [
- [
- {checkbox: true},
- {field: 'id', title: __('Id')},
- // {field: 'pingtai_id', title: __('平台ID')},
- {field: 'user_id', title: __('User_id')},
- {field: 'user.nickname', title: __('User.nickname'), operate: false},
- {field: 'user.mobile', title: __('User.mobile'), operate: 'LIKE'},
- // {field: 'wallet_id', title: __('Wallet_id')},
- {field: 'number', title: __('Number'), operate:'BETWEEN'},
- {field: 'money', title: __('Money'), operate:'BETWEEN'},
- {field: 'type', title: __('Type'), searchList: {"1":__('Type 1'),"2":__('Type 2')}, formatter: Table.api.formatter.normal},
- {field: 'alipay_account', title: __('账号'), operate: 'LIKE'},
- {field: 'realname', title: __('Realname'), operate: 'LIKE'},
- {field: 'status', title: __('Status'), searchList: {"0":__('Status 0'),"1":__('Status 1'),"2":__('Status 2')}, formatter: Table.api.formatter.status},
- {field: 'createtime', title: __('Createtime'), operate:'RANGE', addclass:'datetimerange', autocomplete:false, formatter: Table.api.formatter.datetime},
- {field: 'updatetime', title: __('Updatetime'), operate:'RANGE', addclass:'datetimerange', autocomplete:false, formatter: Table.api.formatter.datetime},
- {field: 'audittime', title: __('Audittime'), operate:'RANGE', addclass:'datetimerange', autocomplete:false, formatter: Table.api.formatter.datetime},
- {field: 'auditremark', title: __('Auditremark'), operate: 'LIKE'},
- /*{field: 'intro_uid', title: __('Intro_uid')},
- {field: 'userto.nickname', title: __('Userto.nickname'), operate: 'LIKE'},
- {field: 'userto.mobile', title: __('Userto.mobile'), operate: 'LIKE'},
- {field: 'intro_money', title: __('Intro_money'), operate:'BETWEEN'},*/
- // {field: 'withdrawalconfig.money', title: __('Withdrawalconfig.money'), operate:'BETWEEN'},
- // {field: 'operate', title: __('Operate'), table: table, events: Table.api.events.operate, formatter: Table.api.formatter.operate}
- /*{field: 'operate', title: __('Operate'), table: table,
- buttons:[
- {
- name:'audit',
- text:'审核',
- title:'审核',
- icon:'fa fa-exclamation-circle',
- classname:'btn btn-xs btn-info btn-dialog',
- url:'takecash/audit/id/{ids}?dialog=1',
- target:'_self',
- /!*hidden:function(row){
- return row.status==100 ? false : false;
- }*!/
- }
- ],
- events: Table.api.events.operate, formatter: Table.api.formatter.operate}*/
- ]
- ]
- });
- // 为表格绑定事件
- Table.api.bindevent(table);
- },
- add: function () {
- Controller.api.bindevent();
- },
- edit: function () {
- Controller.api.bindevent();
- },
- audit: function () {
- Controller.api.bindevent();
- },
- api: {
- bindevent: function () {
- Form.api.bindevent($("form[role=form]"));
- }
- }
- };
- return Controller;
- });
|