cookbook_registration.js 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefined, Backend, Table, Form) {
  2. var Controller = {
  3. index: function () {
  4. // 初始化表格参数配置
  5. Table.api.init({
  6. extend: {
  7. index_url: 'cookbook_registration/index' + location.search,
  8. add_url: 'cookbook_registration/add',
  9. edit_url: 'cookbook_registration/edit',
  10. del_url: 'cookbook_registration/del',
  11. multi_url: 'cookbook_registration/multi',
  12. import_url: 'cookbook_registration/import',
  13. table: 'cookbook_registration',
  14. }
  15. });
  16. var table = $("#table");
  17. // 初始化表格
  18. table.bootstrapTable({
  19. url: $.fn.bootstrapTable.defaults.extend.index_url,
  20. pk: 'id',
  21. sortName: 'id',
  22. columns: [
  23. [
  24. {checkbox: true},
  25. {field: 'id', title: __('Id')},
  26. {field: 'typelist', title: __('Typelist'), searchList: {"主食":__('主食'),"副食":__('副食')}, formatter: Table.api.formatter.normal},
  27. {field: 'timelist', title: __('Timelist'), searchList: {"早餐":__('早餐'),"午餐":__('午餐'),"晚餐":__('晚餐')}, operate:'FIND_IN_SET', formatter: Table.api.formatter.label},
  28. {field: 'weeklist', title: __('Weeklist'), searchList: {"星期一":__('星期一'),"星期二":__('星期二'),"星期三":__('星期三'),"星期四":__('星期四'),"星期五":__('星期五'),"星期六":__('星期六'),"星期日":__('星期日')}, formatter: Table.api.formatter.normal},
  29. {field: 'cookcategory_ids', title: __('Cookcategory_ids'), operate: 'LIKE'},
  30. {field: 'createtime', title: __('Createtime'), operate: 'LIKE'},
  31. {field: 'updatetime', title: __('Updatetime'), operate: 'LIKE'},
  32. {field: 'operate', title: __('Operate'), table: table, events: Table.api.events.operate, formatter: Table.api.formatter.operate}
  33. ]
  34. ]
  35. });
  36. // 为表格绑定事件
  37. Table.api.bindevent(table);
  38. },
  39. add: function () {
  40. Controller.api.bindevent();
  41. },
  42. edit: function () {
  43. Controller.api.bindevent();
  44. },
  45. api: {
  46. bindevent: function () {
  47. Form.api.bindevent($("form[role=form]"));
  48. }
  49. }
  50. };
  51. return Controller;
  52. });