users.js 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  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: 'users/index' + location.search,
  8. add_url: 'users/add',
  9. edit_url: 'users/edit',
  10. del_url: 'users/del',
  11. multi_url: 'users/multi',
  12. import_url: 'users/import',
  13. table: 'users',
  14. }
  15. });
  16. var table = $("#table");
  17. // 初始化表格
  18. table.bootstrapTable({
  19. url: $.fn.bootstrapTable.defaults.extend.index_url,
  20. pk: 'user_id',
  21. sortName: 'user_id',
  22. columns: [
  23. [
  24. {checkbox: true},
  25. {field: 'user_id', title: __('User_id'),operate:false},
  26. {field: 'user_name', title: __('User_name')},
  27. {field: 'user_image', title: __('User_image'), events: Table.api.events.image, formatter: Table.api.formatter.image,operate:false},
  28. {field: 'user_age', title: __('User_age')},
  29. {field: 'user_sex', title: __('User_sex')},
  30. {field: 'user_year_time', title: __('User_year_time')},
  31. {field: 'user_nation', title: __('User_nation')},
  32. {field: 'user_native', title: __('User_native')},
  33. {field: 'user_birthplace', title: __('User_birthplace')},
  34. {field: 'user_politics', title: __('User_politics')},
  35. {field: 'user_party_time', title: __('User_party_time')},
  36. {field: 'user_join_job_time', title: __('User_join_job_time')},
  37. {field: 'user_health', title: __('User_health')},
  38. {field: 'user_major', title: __('User_major')},
  39. {field: 'user_specialty', title: __('User_specialty')},
  40. {field: 'user_job_place', title: __('User_job_place')},
  41. {field: 'user_now_duty', title: __('User_now_duty')},
  42. {field: 'user_administrative_level', title: __('User_administrative_level')},
  43. {field: 'user_education_full', title: __('User_education_full')},
  44. {field: 'user_degree_full', title: __('User_degree_full')},
  45. {field: 'user_school_major_full', title: __('User_school_major_full')},
  46. {field: 'user_education_b', title: __('User_education_b')},
  47. {field: 'user_degree_b', title: __('User_degree_b')},
  48. {field: 'user_school_major_b', title: __('User_school_major_b')},
  49. {
  50. field: 'buttons',
  51. width: "120px",
  52. title: __('按钮组'),
  53. table: table,
  54. events: Table.api.events.operate,
  55. buttons: [
  56. {
  57. name: 'detail',
  58. text: __('查看社会关系'),
  59. title: __('查看社会关系'),
  60. classname: 'btn btn-xs btn-primary btn-dialog',
  61. icon: 'fa fa-list',
  62. url: 'Sociogram/index',
  63. callback: function (data) {
  64. Layer.alert("接收到回传数据:" + JSON.stringify(data), {title: "回传数据"});
  65. },
  66. visible: function (row) {
  67. //返回true时按钮显示,返回false隐藏
  68. return true;
  69. }
  70. },
  71. {
  72. name: 'detail',
  73. text: __('编辑简历'),
  74. title: __('编辑简历'),
  75. classname: 'btn btn-xs btn-primary btn-dialog',
  76. icon: 'fa fa-list',
  77. url: 'Users/resume',
  78. callback: function (data) {
  79. Layer.alert("接收到回传数据:" + JSON.stringify(data), {title: "回传数据"});
  80. },
  81. visible: function (row) {
  82. //返回true时按钮显示,返回false隐藏
  83. return true;
  84. }
  85. },
  86. // {
  87. // name: 'addtabs',
  88. // text: __('新选项卡中打开'),
  89. // title: __('新选项卡中打开'),
  90. // classname: 'btn btn-xs btn-warning btn-addtabs',
  91. // icon: 'fa fa-folder-o',
  92. // url: 'example/bootstraptable/detail'
  93. // }
  94. ],
  95. formatter: Table.api.formatter.buttons
  96. },
  97. {field: 'operate', title: __('Operate'), table: table, events: Table.api.events.operate, formatter: Table.api.formatter.operate}
  98. ]
  99. ]
  100. });
  101. // 为表格绑定事件
  102. Table.api.bindevent(table);
  103. },
  104. add: function () {
  105. Controller.api.bindevent();
  106. },
  107. edit: function () {
  108. Controller.api.bindevent();
  109. },
  110. api: {
  111. bindevent: function () {
  112. Form.api.bindevent($("form[role=form]"));
  113. }
  114. }
  115. };
  116. return Controller;
  117. });