12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefined, Backend, Table, Form) {
- var Controller = {
- index: function () {
- // 初始化表格参数配置
- Table.api.init({
- extend: {
- index_url: 'palmpaysubaccount/index',
- add_url: 'palmpaysubaccount/add',
- edit_url: 'palmpaysubaccount/edit',
- del_url: 'palmpaysubaccount/del',
- multi_url: 'palmpaysubaccount/multi',
- table: 'palmpay_sub_account',
- }
- });
- var table = $("#table");
- // 初始化表格
- table.bootstrapTable({
- url: $.fn.bootstrapTable.defaults.extend.index_url,
- pk: 'id',
- sortName: 'id',
- columns: [
- [
- {checkbox: true},
- {field: 'id', title: __('Id')},
- {field: 'sub_account_type', title: __('Sub_account_type'), visible:false, searchList: {1:__('Sub_account_type 1'),2:__('Sub_account_type 2')}},
- {field: 'sub_account_type_text', title: __('Sub_account_type'), operate:false},
- {field: 'sub_account_code', title: __('Sub_account_code')},
- {field: 'nickname', title: __('Nickname')},
- {field: 'palmpay_company_id', title: __('Palmpay_company_id')},
- {field: 'createtime', title: __('Createtime'), 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;
- });
|