mirror of https://gitee.com/karson/fastadmin.git
54 lines
1.8 KiB
Plaintext
54 lines
1.8 KiB
Plaintext
define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefined, Backend, Table, Form) {
|
|
|
|
var Controller = {
|
|
index: function () {
|
|
// 初始化表格参数配置
|
|
Table.api.init({
|
|
extend: {
|
|
index_url: '{%controllerUrl%}/index',
|
|
add_url: '{%controllerUrl%}/add',
|
|
edit_url: '{%controllerUrl%}/edit',
|
|
del_url: '{%controllerUrl%}/del',
|
|
//import_url: '{%controllerUrl%}/import',
|
|
multi_url: '{%controllerUrl%}/multi',
|
|
table: '{%table%}',
|
|
}
|
|
});
|
|
|
|
var table = $("#table");
|
|
var date = new Date();
|
|
|
|
// 初始化表格
|
|
table.bootstrapTable({
|
|
url: $.fn.bootstrapTable.defaults.extend.index_url,
|
|
pk: '{%pk%}',
|
|
sortName: '{%order%}',
|
|
exportTypes: ['csv', 'excel'],
|
|
exportOptions: {
|
|
fileName: '{%controllerUrl%}_' + date.getFullYear() + '-' + date.getMonth() + '-' + date.getDate(),
|
|
ignoreColumn: [0, 'operate'], //默认不导出第一列(checkbox)与操作(operate)列
|
|
},
|
|
columns: [
|
|
[
|
|
{%javascriptList%}
|
|
]
|
|
]
|
|
});
|
|
|
|
// 为表格绑定事件
|
|
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;
|
|
}); |