123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefined, Backend, Table, Form) {
- var Controller = {
- index: function () {
- // 初始化表格参数配置
- Table.api.init({
- extend: {
- index_url: 'cooperation/index' + location.search,
- add_url: 'cooperation/add',
- edit_url: 'cooperation/edit',
- del_url: 'cooperation/del',
- multi_url: 'cooperation/multi',
- import_url: 'cooperation/import',
- table: 'cooperation',
- }
- });
- var table = $("#table");
- // 初始化表格
- table.bootstrapTable({
- url: $.fn.bootstrapTable.defaults.extend.index_url,
- pk: 'id',
- sortName: 'id',
- search:false,
- columns: [
- [
- {checkbox: true},
- {field: 'id', title: __('Id')},
- //{field: 'user_id', title: __('User_id')},
- {field: 'name', title: __('Name'), operate: 'LIKE'},
- {field: 'mobile', title: __('Mobile'), operate: 'LIKE'},
- //{field: 'servicetype_id', title: __('Servicetype_id')},
- {field: 'servicetype.title', title: __('Servicetype_title'), operate: 'LIKE'},
- {field: 'cooperation_status', title: __('Cooperation_status'), searchList: Config.cooperationStatusList, formatter: Table.api.formatter.status},
- {field: 'remark', title: __('Remark'), operate: 'LIKE'},
- {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: '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;
- });
|