define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefined, Backend, Table, Form) { var Controller = { index: function () { // 初始化表格参数配置 Table.api.init({ extend: { index_url: 'lesson/index' + location.search, add_url: 'lesson/add', edit_url: 'lesson/edit', // del_url: 'lesson/del', multi_url: 'lesson/multi', import_url: 'lesson/import', table: 'lesson', } }); var table = $("#table"); // 初始化表格 table.bootstrapTable({ url: $.fn.bootstrapTable.defaults.extend.index_url, pk: 'id', sortName: 'weigh', sortOrder: 'asc', fixedColumns: true, fixedRightNumber: 1, columns: [ [ {checkbox: true}, {field: 'id', title: __('Id')}, {field: 'name', title: __('Name'), operate: 'LIKE'}, {field: 'name_en', title: __('Name_en'), operate: 'LIKE'}, {field: 'image', title: __('Image'), operate: false, events: Table.api.events.image, formatter: Table.api.formatter.image}, {field: 'price', title: __('Price'), operate:'BETWEEN'}, {field: 'oldprice', title: __('Oldprice'), operate:'BETWEEN'}, {field: 'lessoncate_id', title: __('Lessoncate_id')}, {field: 'type', title: __('Type'), searchList: {"1":__('Type 1'),"2":__('Type 2')}, formatter: Table.api.formatter.normal}, {field: 'is_show', title: __('Is_show'), searchList: {"1":__('Is_show 1'),"0":__('Is_show 0')}, formatter: Table.api.formatter.normal}, {field: 'weigh', title: __('Weigh'), operate: false}, // {field: 'title', title: __('Title'), operate: 'LIKE'}, // {field: 'title_en', title: __('Title_en'), operate: 'LIKE'}, // {field: 'info', title: __('Info'), operate: 'LIKE'}, // {field: 'info_en', title: __('Info_en'), operate: 'LIKE'}, // {field: 'shiherenqun', title: __('Shiherenqun'), operate: 'LIKE'}, // {field: 'shiherenqun_en', title: __('Shiherenqun_en'), operate: 'LIKE'}, // {field: 'pingjunrenshu', title: __('Pingjunrenshu'), operate: 'LIKE'}, // {field: 'pingjunrenshu_en', title: __('Pingjunrenshu_en'), operate: 'LIKE'}, // {field: 'sirenkecheng', title: __('Sirenkecheng'), operate: 'LIKE'}, // {field: 'sirenkecheng_en', title: __('Sirenkecheng_en'), operate: 'LIKE'}, // {field: 'daoshi', title: __('Daoshi'), operate: 'LIKE'}, // {field: 'daoshi_en', title: __('Daoshi_en'), operate: 'LIKE'}, {field: 'cate.name', title: __('Cate.name'), operate: 'LIKE'}, {field: 'cate.name_en', title: __('Cate.name_en'), operate: 'LIKE'}, {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(); }, vue_add: function () { Form.api.bindevent($("form[role=form]"), function(data, ret){ window.location.href = ret.url; }) }, vue_edit: function () { Form.api.bindevent($("form[role=form]"), function(data, ret){ window.location.href = ret.url; }) }, api: { bindevent: function () { Form.api.bindevent($("form[role=form]")); } } }; return Controller; });