123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118 |
- define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefined, Backend, Table, Form) {
- var Controller = {
- index: function () {
- $('.btn-add').data('area',['85%','85%']);
- $('.btn-edit').data('area',['85%','85%']);
- // 初始化表格参数配置
- Table.api.init({
- extend: {
- index_url: 'teacher/collection/index' + location.search,
- add_url: 'teacher/collection/add',
- edit_url: 'teacher/collection/edit',
- del_url: 'teacher/collection/del',
- multi_url: 'teacher/collection/multi',
- import_url: 'teacher/collection/import',
- table: 'teacher_collection',
- }
- });
- var table = $("#table");
- // 初始化表格
- table.bootstrapTable({
- url: $.fn.bootstrapTable.defaults.extend.index_url,
- pk: 'exam_collection_id',
- sortName: 'exam_collection_id',
- fixedColumns: true,
- fixedRightNumber: 1,
- searchFormVisible:true,
- columns: [
- [
- {checkbox: true},
- {field: 'exam_collection_id', title: __('编号')},
- {field: 'exam_collection_name', title: __('Exam_collection_name'), operate: 'LIKE', table: table, class: 'autocontent', formatter: Table.api.formatter.content},
- {field: 'sim_type', title: __('Sim_type'),searchList:{"0001":"FZD04B型侦毒器","0002":"FZB006型毒剂报警器","0003":"防化兵用毒剂报警器"},formatter: Table.api.formatter.simtype},
- {field: 'question_setting_method', title: __('Question_setting_method'),searchList:{"1":"系统随机","2":"教师自选","3":"任务自选"},formatter: Table.api.formatter.simmethod},
- {field: 'exam_collection_type', title: __('Exam_collection_type'),operate: false,formatter: function (value, row, index) {
- return '考试';
- }
- },
- {
- field: 'exam_collection_state',searchList:{"2":"打开","3":"关闭"},
- title: __('Exam_collection_state'),
- align: 'center',
- table: table,
- formatter: Table.api.formatter.collectonstate
- },
- // {field: 'task_id', title: __('Task_id')},
- {field: 'limit_duration', title: __('Limit_duration')},
- {field: 'start_time', title: __('Start_time'), operate:'RANGE', addclass:'datetimerange', autocomplete:false},
- {field: 'end_time', title: __('End_time'), operate:'RANGE', addclass:'datetimerange', autocomplete:false},
- // {field: 'create_user_id', title: __('Create_user_id')},
- {field: 'create_by', title: __('Create_by'), operate: 'LIKE'},
- {field: 'createtime', title: __('Create_time'), operate:'RANGE', addclass:'datetimerange', autocomplete:false},
- // {field: 'update_by', title: __('Update_by'), operate: 'LIKE'},
- // {field: 'update_time', title: __('Update_time'), operate:'RANGE', addclass:'datetimerange', autocomplete:false},
- // {field: 'remark', title: __('Remark'), operate: 'LIKE', table: table, class: 'autocontent', formatter: Table.api.formatter.content},
- {field: 'operate', title: __('Operate'), table: table, events: Table.api.events.operate, formatter: Table.api.formatter.operate}
- ]
- ]
- });
- // 为表格绑定事件
- Table.api.bindevent(table);
- },
- add: function () {
- Table.api.init({
- extend: {
- index_url: 'teacher/collection/index' + location.search,
- }
- });
- var table = $("#table1");
- // 初始化表格
- table.bootstrapTable({
- url: $.fn.bootstrapTable.defaults.extend.index_url,
- pk: 'exam_collection_id',
- sortName: 'exam_collection_id',
- fixedColumns: true,
- fixedRightNumber: 1,
- searchFormVisible:false,
- Search:false,
- columns: [
- [
- {checkbox: true},
- {field: 'exam_collection_name', title: __('区队名称'), operate: 'LIKE', table: table, class: 'autocontent', formatter: Table.api.formatter.content},
- {field: 'exam_collection_id', title: __('全部人员数量'),operate: false},
- ]
- ]
- });
- // 为表格绑定事件
- Table.api.bindevent(table);
- var ids = Table.api.selectedids(table);
- $(".banjiid").val(ids);
- console.log(ids);
- // return;
- Controller.api.bindevent();
- },
- edit: function () {
- Controller.api.bindevent();
- },
- api: {
- bindevent: function () {
- Form.api.bindevent($("form[role=form]"));
- }
- }
- };
- return Controller;
- });
|