| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 | define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefined, Backend, Table, Form) {    var Controller = {        index: function () {            // 初始化表格参数配置            Table.api.init({                extend: {                    index_url: 'consume_ruin/index' + location.search,                    table: 'consume_ruin',                }            });            var table = $("#table");            // 初始化表格            table.bootstrapTable({                url: $.fn.bootstrapTable.defaults.extend.index_url,                pk: 'id',                sortName: 'id',                columns: [                    [                        {checkbox: true},                        {field: 'order_number', title: __('序号')},                        {field: 'durg_archives_id_text', title: __('Durg_archives_id')},                        {field: 'manufacturer', title: __('Manufacturer'), operate: 'LIKE'},                        {field: 'specifications', title: __('Specifications'), operate: 'LIKE'},                        {field: 'durg_brand', title: __('Durg_brand'), operate: 'LIKE'},                        {field: 'put_in', title: __('Put_in'), operate: 'LIKE'},                        {field: 'createtime', title: __('Createtime'), operate: 'LIKE', addclass:'datetimerange', autocomplete:false, formatter: Table.api.formatter.datetime},                    ]                ]            });            // 为表格绑定事件            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;});
 |