caozuoguifan.js 3.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  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: 'caozuoguifan/index' + location.search,
  8. add_url: 'caozuoguifan/add',
  9. edit_url: 'caozuoguifan/edit',
  10. del_url: 'caozuoguifan/del',
  11. multi_url: 'caozuoguifan/multi',
  12. import_url: 'caozuoguifan/import',
  13. table: 'caozuoguifan',
  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: 'company_id', title: __('Company_id')},
  27. {field: 'company.companyname', title: __('Company.companyname'), operate: 'LIKE'},
  28. {field: 'type_id', title: __('Type_id')},
  29. {field: 'type.name', title: __('Type.name'), operate: 'LIKE', table: table, class: 'autocontent', formatter: Table.api.formatter.content},
  30. {field: 'title', title: __('Title'), operate: 'LIKE', table: table, class: 'autocontent', formatter: Table.api.formatter.content},
  31. {field: 'image', title: __('Image'), operate: false, events: Table.api.events.image, formatter: Table.api.formatter.image},
  32. {field: 'videofile', title: __('Videofile'), operate: false, formatter: Table.api.formatter.video},
  33. {field: 'createtime', title: __('Createtime'), operate:'RANGE', addclass:'datetimerange', autocomplete:false, formatter: Table.api.formatter.datetime},
  34. {field: 'updatetime', title: __('Updatetime'), 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. add: function () {
  43. Controller.api.bindevent();
  44. },
  45. edit: function () {
  46. Controller.api.bindevent();
  47. },
  48. api: {
  49. bindevent: function () {
  50. Form.api.bindevent($("form[role=form]"));
  51. }
  52. }
  53. };
  54. return Controller;
  55. });
  56. $("#c-type_id").data("params", function (obj) {
  57. return {
  58. custom: {company_id: $("#c-company_id").val()}
  59. };
  60. });
  61. $(document).on("change","#c-company_id",function(){
  62. $("#c-type_id").selectPageClear();
  63. })