71 lines
3.9 KiB
JavaScript
71 lines
3.9 KiB
JavaScript
|
define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefined, Backend, Table, Form) {
|
||
|
|
||
|
var Controller = {
|
||
|
index: function () {
|
||
|
// 初始化表格参数配置
|
||
|
Table.api.init({
|
||
|
extend: {
|
||
|
index_url: 'school/classes/verification/index' + location.search,
|
||
|
add_url: 'school/classes/verification/add',
|
||
|
edit_url: 'school/classes/verification/edit',
|
||
|
del_url: 'school/classes/verification/del',
|
||
|
multi_url: 'school/classes/verification/multi',
|
||
|
import_url: 'school/classes/verification/import',
|
||
|
table: 'school_verification',
|
||
|
}
|
||
|
});
|
||
|
|
||
|
var table = $("#table");
|
||
|
|
||
|
// 初始化表格
|
||
|
table.bootstrapTable({
|
||
|
url: $.fn.bootstrapTable.defaults.extend.index_url,
|
||
|
pk: 'id',
|
||
|
sortName: 'id',
|
||
|
columns: [
|
||
|
[
|
||
|
{checkbox: true},
|
||
|
{field: 'id', title: __('Id')},
|
||
|
{field: 'manystore_id', title: __('Manystore_id')},
|
||
|
{field: 'shop_id', title: __('Shop_id')},
|
||
|
{field: 'user_id', title: __('User_id')},
|
||
|
{field: 'classes_lib_ids', title: __('Classes_lib_ids'), operate: 'LIKE'},
|
||
|
{field: 'status', title: __('Status'), searchList: {"1":__('Status 1'),"2":__('Status 2')}, formatter: Table.api.formatter.status},
|
||
|
{field: 'createtime', title: __('Createtime')},
|
||
|
{field: 'updatetime', title: __('Updatetime')},
|
||
|
{field: 'manystore.nickname', title: __('Manystore.nickname'), operate: 'LIKE'},
|
||
|
{field: 'manystore.avatar', title: __('Manystore.avatar'), operate: 'LIKE', events: Table.api.events.image, formatter: Table.api.formatter.image},
|
||
|
{field: 'manystoreshop.name', title: __('Manystoreshop.name'), operate: 'LIKE'},
|
||
|
{field: 'manystoreshop.image', title: __('Manystoreshop.image'), operate: false, events: Table.api.events.image, formatter: Table.api.formatter.image},
|
||
|
{field: 'manystoreshop.address_city', title: __('Manystoreshop.address_city'), operate: 'LIKE'},
|
||
|
{field: 'manystoreshop.province', title: __('Manystoreshop.province')},
|
||
|
{field: 'manystoreshop.city', title: __('Manystoreshop.city')},
|
||
|
{field: 'manystoreshop.district', title: __('Manystoreshop.district')},
|
||
|
{field: 'manystoreshop.address', title: __('Manystoreshop.address'), operate: 'LIKE'},
|
||
|
{field: 'manystoreshop.address_detail', title: __('Manystoreshop.address_detail'), operate: 'LIKE'},
|
||
|
{field: 'user.nickname', title: __('User.nickname'), operate: 'LIKE'},
|
||
|
{field: 'user.realname', title: __('User.realname'), operate: 'LIKE'},
|
||
|
{field: 'user.mobile', title: __('User.mobile'), operate: 'LIKE'},
|
||
|
{field: 'user.avatar', title: __('User.avatar'), operate: 'LIKE', events: Table.api.events.image, formatter: Table.api.formatter.image},
|
||
|
{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;
|
||
|
});
|