help_apply.js 3.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  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: 'help/help_apply/index' + location.search,
  8. add_url: 'help/help_apply/add',
  9. edit_url: 'help/help_apply/edit',
  10. del_url: 'help/help_apply/del',
  11. multi_url: 'help/help_apply/multi',
  12. import_url: 'help/help_apply/import',
  13. table: 'help_apply',
  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: 'cid', title: __('Cid')},
  27. {field: 'user_id', title: __('User_id')},
  28. {field: 'help_id', title: __('Help_id')},
  29. {field: 'full_name', title: __('Full_name'), operate: 'LIKE'},
  30. {field: 'phone', title: __('Phone'), operate: 'LIKE'},
  31. {field: 'status', title: __('Status'), searchList: {"-1":__('Status -1'),"0":__('Status 0'),"1":__('Status 1')}, formatter: Table.api.formatter.status},
  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. $("#c-help_id").data("params", function (obj) {
  43. return {custom: {cid: $("#c-cid").val()}};
  44. });
  45. $("#c-user_id").data("params", function (obj) {
  46. return {custom: {cid: $("#c-cid").val()}};
  47. });
  48. Controller.api.bindevent();
  49. },
  50. edit: function () {
  51. $("#c-help_id").data("params", function (obj) {
  52. return {custom: {cid: $("#c-cid").val()}};
  53. });
  54. $("#c-user_id").data("params", function (obj) {
  55. return {custom: {cid: $("#c-cid").val()}};
  56. });
  57. Controller.api.bindevent();
  58. },
  59. api: {
  60. bindevent: function () {
  61. Form.api.bindevent($("form[role=form]"));
  62. }
  63. }
  64. };
  65. return Controller;
  66. });