1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefined, Backend, Table, Form) {
- var Controller = {
- index: function () {
- // 初始化表格参数配置
- Table.api.init({
- extend: {
- index_url: '{%controllerUrl%}/index' + location.search,
- add_url: '{%controllerUrl%}/add',
- edit_url: '{%controllerUrl%}/edit',
- del_url: '{%controllerUrl%}/del',
- multi_url: '{%controllerUrl%}/multi',
- table: '{%table%}',
- }
- });
- var table = $("#table");
- // 初始化表格
- table.bootstrapTable({
- url: $.fn.bootstrapTable.defaults.extend.index_url,
- pk: '{%pk%}',
- sortName: '{%order%}',
- columns: [
- [
- {%javascriptList%}
- ]
- ]
- });
- // 为表格绑定事件
- Table.api.bindevent(table);
- },{%recyclebinJs%}
- add: function () {
- Controller.api.bindevent();
- },
- edit: function () {
- Controller.api.bindevent();
- },
- api: {
- bindevent: function () {
- Form.api.bindevent($("form[role=form]"));
- }
- }
- };
- return Controller;
- });
|