define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefined, Backend, Table, Form) { var Controller = { index: function () { // 初始化表格参数配置 Table.api.init({ extend: { index_url: 'videocate/index' + location.search, add_url: 'videocate/add', edit_url: 'videocate/edit', del_url: 'videocate/del', multi_url: 'videocate/multi', import_url: 'videocate/import', table: 'video_cate', } }); var table = $("#table"); // 初始化表格 table.bootstrapTable({ url: $.fn.bootstrapTable.defaults.extend.index_url, pk: 'id', sortName: 'weigh', sortOrder:'asc', columns: [ [ {checkbox: true}, {field: 'id', title: __('Id')}, {field: 'name', title: __('Name'), operate: 'LIKE'}, {field: 'status', title: __('Status'), searchList: {"0":__('Status 0'),"1":__('Status 1')}, formatter: Table.api.formatter.status}, {field: 'weigh', title: __('Weigh'), operate: false}, {field: 'showtype', title: __('Showtype'), searchList: {"1":__('Showtype 1'),"2":__('Showtype 2'),"3":__('Showtype 3'),"4":__('Showtype 4'),"5":__('Showtype 5'),"6":__('Showtype 6'),"7":__('Showtype 7'),"8":__('Showtype 8'),"9":__('Showtype 9')}, formatter: Table.api.formatter.normal}, {field: 'is_zhuanti', title: __('Is_zhuanti'), searchList: {"1":__('Is_zhuanti 1'),"0":__('Is_zhuanti 0')}, formatter: Table.api.formatter.normal}, {field: 'videobg_image', title: __('Videobg_image'), operate: false, 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; });