define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefined, Backend, Table, Form) { var Controller = { index: function () { // 初始化表格参数配置 Table.api.init({ extend: { index_url: 'lessonslot/index' + location.search, add_url: 'lessonslot/add', edit_url: 'lessonslot/edit', del_url: 'lessonslot/del', multi_url: 'lessonslot/multi', import_url: 'lessonslot/import', table: 'lesson_slot', } }); var table = $("#table"); table.on('load-success.bs.table', function (e, data) { console.log(data); $("#last_week").attr('href','/FioeDKdjym.php/lessonslot/index?addtab=1&week_current=' + data.extend.last_week); $("#this_week").attr('href','/FioeDKdjym.php/lessonslot/index?addtab=1&week_current=' + data.extend.this_week); $("#next_week").attr('href','/FioeDKdjym.php/lessonslot/index?addtab=1&week_current=' + data.extend.next_week); }); // 初始化表格 table.bootstrapTable({ url: $.fn.bootstrapTable.defaults.extend.index_url, pk: 'id', sortName: 'id', fixedColumns: true, fixedRightNumber: 1, columns: [ [ {checkbox: true}, {field: 'id', title: __('Id')}, {field: 'starttime', title: __('Starttime'), operate:'RANGE', addclass:'datetimerange', autocomplete:false, formatter: Table.api.formatter.datetime}, {field: 'week', title: __('Week'), operate:false}, {field: 'hours', title: __('Hours')}, {field: 'endtime', title: __('Endtime'), operate:'RANGE', addclass:'datetimerange', autocomplete:false, formatter: Table.api.formatter.datetime}, {field: 'num_min', title: __('Num_min')}, {field: 'num_max', title: __('Num_max')}, {field: 'bookednum', title: __('Bookednum')}, {field: 'waitnum_max', title: __('Waitnum_max')}, {field: 'coach_ids', title: __('Coach_ids'), operate: 'LIKE'}, {field: 'coach.nickname', title: __('Coach.nickname'), operate: 'LIKE'}, {field: 'lesson_id', title: __('Lesson_id')}, {field: 'lesson.name', title: __('Lesson.name'), operate: 'LIKE'}, {field: 'lesson.name_en', title: __('Lesson.name_en'), operate: 'LIKE'}, {field: 'lesson.type', title: __('Lesson.type'),searchList: {"1":__('Lesson.type 1'),"2":__('Lesson.type 2')}, formatter: Table.api.formatter.normal}, // {field: 'address', title: __('Address'), operate: 'LIKE'}, {field: 'status', title: __('Status'), searchList: {"0":__('Status 0'),"20":__('Status 20'),"30":__('Status 30')}, formatter: Table.api.formatter.status}, // {field: 'remark', title: __('Remark'), operate: 'LIKE'}, // {field: 'notice_status', title: __('Notice_status'), searchList: {"0":__('Notice_status 0'),"1":__('Notice_status 1')}, formatter: Table.api.formatter.status}, {field: 'finishtime', title: __('Finishtime'), operate:'RANGE', addclass:'datetimerange', autocomplete:false, formatter: Table.api.formatter.datetime}, {field: 'cancel_reason', title: __('Cancel_reason'), operate: 'LIKE'}, {field: 'cancel_time', title: __('Cancel_time'), operate:'RANGE', addclass:'datetimerange', autocomplete:false, formatter: Table.api.formatter.datetime}, {field: 'is_show', title: __('Is_show'), searchList: {"1":__('Is_show 1'),"0":__('Is_show 0')}, formatter: Table.api.formatter.normal}, {field: 'copy_status', title: __('Copy_status'), searchList: {"1":__('Copy_status 1'),"0":__('Copy_status 0')}, formatter: Table.api.formatter.normal}, // {field: 'cancel_notice_status', title: __('Cancel_notice_status'), searchList: {"0":__('Cancel_notice_status 0'),"1":__('Cancel_notice_status 1')}, formatter: Table.api.formatter.status}, {field: 'danceroom_id', title: __('Danceroom_id')}, {field: 'danceroom.name', title: __('Danceroom.name'), operate: 'LIKE'}, {field: 'danceroom.name_en', title: __('Danceroom.name_en'), operate: 'LIKE'}, {field: 'operate', title: __('Operate'), table: table, buttons:[ { name:'cancel', text:'取消', title:'取消', icon:'fa fa-exclamation-circle', classname:'btn btn-xs btn-info btn-dialog', url:'lessonslot/cancel/id/{ids}?dialog=1', target:'_self', hidden:function(row){ return row.status==0 ? false : true; } }, { name:'booking', text:'预约', title:'预约', icon:'fa fa-exclamation-circle', classname:'btn btn-xs btn-info btn-dialog', url:'lessonslot/booking/id/{ids}?dialog=1', target:'_self', hidden:function(row){ return row.status==0 ? false : true; } } ], events: Table.api.events.operate, formatter: Table.api.formatter.operate} ] ] }); // 为表格绑定事件 Table.api.bindevent(table); // 复制本周的课程表 /*$(document).on("click", ".btn-copyweek", function () { Fast.api.ajax('lessonslot/copyweek','复制本周的课程表'); });*/ }, add: function () { Controller.api.bindevent(); }, booking: function () { Controller.api.bindevent(); }, edit: function () { Controller.api.bindevent(); }, cancel: function () { Controller.api.bindevent(); }, copyweek: function () { Form.api.bindevent($("form[role=form]")); }, api: { bindevent: function () { Form.api.bindevent($("form[role=form]")); } } }; return Controller; }); $("#c-packageorder_id").data("params", function (obj) { return { user_id: $("#c-user_id").val(), number: $("#c-number").val(), slot_id: $("#c-slot_id").val() }; }); $("#c-trylessonorder_id").data("params", function (obj) { return { user_id: $("#c-user_id").val(), number: $("#c-number").val(), slot_id: $("#c-slot_id").val() }; }); $(document).on("change","#c-user_id",function(){ $("#c-packageorder_id").selectPageClear(); $("#c-trylessonorder_id").selectPageClear(); }) $(document).on("change","#c-number",function(){ $("#c-packageorder_id").selectPageClear(); $("#c-trylessonorder_id").selectPageClear(); })