news.js 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  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: 'news/index' + location.search,
  8. add_url: 'news/add',
  9. edit_url: 'news/edit',
  10. del_url: 'news/del',
  11. multi_url: 'news/multi',
  12. import_url: 'news/import',
  13. table: 'news',
  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: 'createtime', title: __('Createtime'), operate:'RANGE', addclass:'datetimerange', autocomplete:false, formatter: Table.api.formatter.datetime},
  33. {field: 'updatetime', title: __('Updatetime'), operate:'RANGE', addclass:'datetimerange', autocomplete:false, formatter: Table.api.formatter.datetime},
  34. {field: 'operate', title: __('Operate'), table: table, events: Table.api.events.operate, formatter: Table.api.formatter.operate}
  35. ]
  36. ]
  37. });
  38. // 为表格绑定事件
  39. Table.api.bindevent(table);
  40. },
  41. add: function () {
  42. Controller.api.bindevent();
  43. },
  44. edit: function () {
  45. Controller.api.bindevent();
  46. },
  47. api: {
  48. bindevent: function () {
  49. Form.api.bindevent($("form[role=form]"));
  50. }
  51. }
  52. };
  53. return Controller;
  54. });
  55. $("#c-type_id").data("params", function (obj) {
  56. return {
  57. custom: {company_id: $("#c-company_id").val()}
  58. };
  59. });
  60. $(document).on("change","#c-company_id",function(){
  61. $("#c-type_id").selectPageClear();
  62. })