topicdongtaireport.js 3.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  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: 'topicdongtaireport/index' + location.search,
  8. add_url: 'topicdongtaireport/add',
  9. // edit_url: 'topicdongtaireport/edit',
  10. del_url: 'topicdongtaireport/del',
  11. multi_url: 'topicdongtaireport/multi',
  12. import_url: 'topicdongtaireport/import',
  13. table: 'topic_dongtai_report',
  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: 'user_id', title: __('User_id')},
  27. {field: 'user.username', title: __('User.username'), operate: 'LIKE'},
  28. // {field: 'to_user_id', title: __('To_user_id')},
  29. {field: 'dt_id', title: __('Dt_id')},
  30. {field: 'status', title: __('Status'), searchList: {"0":__('Status 0'),"1":__('Status 1')}, formatter: Table.api.formatter.status},
  31. {field: 'createtime', title: __('Createtime'), operate:'RANGE', addclass:'datetimerange', autocomplete:false, formatter: Table.api.formatter.datetime},
  32. {field: 'operate', title: __('Operate'), table: table,
  33. buttons:[
  34. {
  35. name:'dongtaidetail',
  36. text:'查看动态',
  37. title:'查看动态',
  38. icon:'fa fa-exclamation-circle',
  39. classname:'btn btn-xs btn-info btn-dialog',
  40. url:function($row){
  41. return 'topicdongtai/edit/ids/'+ $row.dt_id +'?dialog=1';
  42. },
  43. target:'_self',
  44. }
  45. ],
  46. events: Table.api.events.operate, formatter: Table.api.formatter.operate}
  47. ]
  48. ]
  49. });
  50. // 为表格绑定事件
  51. Table.api.bindevent(table);
  52. },
  53. add: function () {
  54. Controller.api.bindevent();
  55. },
  56. edit: function () {
  57. Controller.api.bindevent();
  58. },
  59. api: {
  60. bindevent: function () {
  61. Form.api.bindevent($("form[role=form]"));
  62. }
  63. }
  64. };
  65. return Controller;
  66. });