...
|
...
|
@@ -17,21 +17,38 @@ define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefin |
|
|
|
|
|
var table = $("#table");
|
|
|
|
|
|
//顶部搜索栏
|
|
|
table.on('post-common-search.bs.table', function (event, table) {
|
|
|
var form = $("form", table.$commonsearch);
|
|
|
//类型名称
|
|
|
$("input[name='title']", form).addClass("selectpage").data("source", "campus/index").data("primaryKey", "id").data("field", "title").data("orderBy", "id desc");
|
|
|
$("input[name='school.title']", form).addClass("selectpage").data("source", "school/index").data("primaryKey", "id").data("field", "title").data("orderBy", "id desc");
|
|
|
$("input[name='activity.title']", form).addClass("selectpage").data("source", "activity/index").data("primaryKey", "id").data("field", "title").data("orderBy", "id desc");
|
|
|
Form.events.cxselect(form);
|
|
|
Form.events.selectpage(form);
|
|
|
});
|
|
|
|
|
|
// 初始化表格
|
|
|
table.bootstrapTable({
|
|
|
url: $.fn.bootstrapTable.defaults.extend.index_url,
|
|
|
pk: 'id',
|
|
|
sortName: 'id',
|
|
|
showToggle: false,//浏览模式功能关闭
|
|
|
showColumns: false,//显示隐藏列功能关闭
|
|
|
//commonSearch: false, //关闭通用搜索按钮
|
|
|
showExport: false,//导出功能关闭
|
|
|
clickToSelect: false, //是否启用点击选中
|
|
|
dblClickToEdit: false, //是否启用双击编辑
|
|
|
columns: [
|
|
|
[
|
|
|
{checkbox: true},
|
|
|
{field: 'id', title: __('ID')},
|
|
|
{field: 'id', title: __('ID'),operate: false},
|
|
|
{field: 'title', title: __('Title'), operate: 'LIKE'},
|
|
|
// {field: 'school_id', title: __('School_id')},
|
|
|
// {field: 'activity_id', title: __('Activity_id')},
|
|
|
{field: 'school.title', title: __('School.title'), operate: 'LIKE'},
|
|
|
{field: 'activity.title', title: __('Activity.title'), operate: 'LIKE'},
|
|
|
{field: 'date', title: __('Date'), operate: 'LIKE'},
|
|
|
{field: 'date', title: __('Date'), operate: false},
|
|
|
{field: 'operate', title: __('Operate'), table: table, events: Table.api.events.operate, formatter: Table.api.formatter.operate}
|
|
|
]
|
|
|
]
|
...
|
...
|
|