attire.js 3.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  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: 'attire/attire/index' + location.search,
  8. add_url: 'attire/attire/add',
  9. edit_url: 'attire/attire/edit',
  10. del_url: 'attire/attire/del',
  11. multi_url: 'attire/attire/multi',
  12. import_url: 'attire/attire/import',
  13. table: 'attire',
  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: 'title', title: __('Title'), operate: 'LIKE'},
  27. {field: 'type', title: __('Type'), searchList: {"1":__('Type 1'),"2":__('Type 2'),"3":__('Type 3'),"4":__('Type 4')}, formatter: Table.api.formatter.normal},
  28. {field: 'price', title: __('Price')},
  29. {field: 'limit_day', title: __('Limit_day')},
  30. {field: 'file_image', title: __('File_image'), operate: false, events: Table.api.events.image, formatter: Table.api.formatter.image},
  31. // {field: 'gif_image', title: __('Gif_image'), operate: false, events: Table.api.events.image, formatter: Table.api.formatter.image},
  32. {field: 'is_show', title: __('Is_show'), searchList: {"1":__('Is_show 1'),"0":__('Is_show 0')}, formatter: Table.api.formatter.normal},
  33. {field: 'updatetime', title: __('Updatetime'), operate:'RANGE', addclass:'datetimerange', autocomplete:false, formatter: Table.api.formatter.datetime},
  34. {field: 'createtime', title: __('Createtime'), operate:'RANGE', addclass:'datetimerange', autocomplete:false, formatter: Table.api.formatter.datetime},
  35. {field: 'operate', title: __('Operate'), table: table, events: Table.api.events.operate, formatter: Table.api.formatter.operate}
  36. ]
  37. ]
  38. });
  39. // 为表格绑定事件
  40. Table.api.bindevent(table);
  41. // 启动和暂停按钮
  42. $(document).on("click", ".btn-batchshowup", function () {
  43. var ids = Table.api.selectedids(table);
  44. Fast.api.ajax_refresh('attire/attire/batchshowup/ids/'+ ids,'批量上架');
  45. });
  46. $(document).on("click", ".btn-batchshowdown", function () {
  47. var ids = Table.api.selectedids(table);
  48. Fast.api.ajax_refresh('attire/attire/batchshowdown/ids/'+ ids,'批量下架');
  49. });
  50. },
  51. add: function () {
  52. Controller.api.bindevent();
  53. },
  54. edit: function () {
  55. Controller.api.bindevent();
  56. },
  57. batchshowup: function () {
  58. Form.api.bindevent($("form[role=form]"));
  59. },
  60. batchshowdown: function () {
  61. Form.api.bindevent($("form[role=form]"));
  62. },
  63. api: {
  64. bindevent: function () {
  65. Form.api.bindevent($("form[role=form]"));
  66. }
  67. }
  68. };
  69. return Controller;
  70. });