| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 | define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefined, Backend, Table, Form) {    var Controller = {        index: function () {            // 初始化表格参数配置            Table.api.init({                extend: {                    index_url: 'temporary/index' + location.search,                    add_url: 'temporary/add',                    edit_url: 'temporary/edit',                    del_url: 'temporary/del',                    multi_url: 'temporary/multi',                    import_url: 'temporary/import',                    table: 'temporary',                }            });            var table = $("#table");            // 初始化表格            table.bootstrapTable({                url: $.fn.bootstrapTable.defaults.extend.index_url,                pk: 'id',                sortName: 'id',                columns: [                    [                        {checkbox: true},                        {field: 'order_number', title: __('序号')},                        {field: 'site', title: __('Site'), operate: 'LIKE'},                        {field: 'unit', title: __('Unit'), operate: 'LIKE'},                        {field: 'people', title: __('People'), operate: 'LIKE'},                        {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: 'remark', title: __('Remark'), operate: 'LIKE'},                        {field: 'createtime', title: __('Createtime'), operate:'RANGE', addclass:'datetimerange', autocomplete:false, formatter: Table.api.formatter.datetime},                        {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;});
 |