family.js 2.8 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/family/index' + location.search,
  8. add_url: 'help/family/add',
  9. edit_url: 'help/family/edit',
  10. del_url: 'help/family/del',
  11. multi_url: 'help/family/multi',
  12. import_url: 'help/family/import',
  13. table: 'help_family',
  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: 'help_id', title: __('Help_id')},
  28. {field: 'full_name', title: __('Full_name'), operate: 'LIKE'},
  29. {field: 'relation', title: __('Relation'), operate: 'LIKE'},
  30. {field: 'id_card', title: __('Id_card'), operate: 'LIKE'},
  31. {field: 'work_unit', title: __('Work_unit'), operate: 'LIKE'},
  32. {field: 'healthy', title: __('Healthy'), operate: 'LIKE'},
  33. {field: 'monthly_income', title: __('Monthly_income'), operate: 'LIKE'},
  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. });