define(['table', 'upload','form'], function (Table,Upload,Form) { var thali = { //Do setup work hereAction index: function () { window.statuskOption= Config.statusList; Table.api.init({ extend: { index_url: 'thali/select', add_url: 'thali/insert', edit_url: 'thali/update', del_url: 'thali/delete', multi_url: 'thali/multi', //dragsort_url: 'thali/weigh', table: 'thali', } }); var table = $("#table"); var tableOptions = { url: $.fn.bootstrapTable.defaults.extend.index_url, pk: 'id', sortName: 'id', commonSearch: false, search: false, columns: [ [ {checkbox: true}, { field: 'id', title: 'ID', filter: "number", sortable: true // 是否排序 }, { title: "名称", field: "title", filter: "string", }, { title: "价格", field: "price", filter: "number", formatter:function(v){ return Table.api.formatter.number(v)+'元'; } }, { title: "原价", field: "org_price", filter: "number", formatter:function(v){ return Table.api.formatter.number(v)+'元'; } }, { title: "时长", field: "duration", filter: "number", formatter:function(v){ return v+'天'; } }, { title: "标签", field: "label", filter: "string" }, { title: "状态", field: "status", sortable: true, formatter:Table.api.formatter.status, searchList:window.statuskOption, operate:false, filter: "select", filterOption:"statuskOption" }, { title: "创建时间", field: "created_at", visible: false, }, { title: "更新时间", field: "updated_at", visible: false, }, {field: 'operate', title: '操作', table: table, events: Table.api.events.operate, formatter: Table.api.formatter.operate} ] ] }; // 初始化表格 table.bootstrapTable(tableOptions); // 为表格绑定事件 Table.api.bindevent(table); }, update:function(){ this.bindevent(); }, insert:function(){ this.bindevent(); }, bindevent:function(){ Config['upload_url'] = 'files/upload'; var form = $('form'); var that = this; Form.api.bindevent(form) } }; return thali });