1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefined, Backend, Table, Form) {
- var Controller = {
- index: function () {
- // 初始化表格参数配置
- Table.api.init({
- extend: {
- index_url: 'takecash/index' + location.search,
- // add_url: 'takecash/add',
- // edit_url: 'takecash/edit',
- // del_url: 'takecash/del',
- multi_url: 'takecash/multi',
- import_url: '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: 'user_id', title: __('User_id')},
- {field: 'user.nickname', title: __('User.nickname'), operate: 'LIKE'},
- {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: __('Alipay_account'), 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;
- });
|