users.js 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  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. search:false,
  23. showExport: false,
  24. columns: [
  25. [
  26. {checkbox: true},
  27. {field: 'user_id', title: __('User_id')},
  28. {field: 'user_name', title: __('User_name'),operate: "like"},
  29. {field: 'user_image', title: __('User_image'), events: Table.api.events.image, formatter: Table.api.formatter.image,operate:false},
  30. {field: 'user_age', title: __('User_age'),operate: "like"},
  31. {field: 'user_sex', title: __('User_sex'),operate: "like"},
  32. // {field: 'user_year_time', title: __('User_year_time')},
  33. {field: 'user_nation', title: __('User_nation'),operate: "like"},
  34. {field: 'user_native', title: __('User_native'),operate: "like"},
  35. {field: 'user_birthplace', title: __('User_birthplace'),operate: "like"},
  36. {field: 'user_politics', title: __('User_politics'),operate: "like"},
  37. // {field: 'user_party_time', title: __('User_party_time')},
  38. // {field: 'user_join_job_time', title: __('User_join_job_time')},
  39. {field: 'user_health', title: __('User_health'),operate: "like"},
  40. {field: 'user_major', title: __('User_major'),operate: "like"},
  41. {field: 'user_specialty', title: __('User_specialty'),operate: "like"},
  42. {field: 'user_job_place', title: __('User_job_place'),operate: "like"},
  43. {field: 'user_now_duty', title: __('User_now_duty'),operate: "like"},
  44. {field: 'user_administrative_level', title: __('User_administrative_level'),operate: "like"},
  45. {field: 'user_education_full', title: __('User_education_full'),operate: "like"},
  46. {field: 'user_degree_full', title: __('User_degree_full'),operate: "like"},
  47. {field: 'user_school_major_full', title: __('User_school_major_full'),operate: "like"},
  48. {field: 'user_education_b', title: __('User_education_b'),operate: "like"},
  49. {field: 'user_degree_b', title: __('User_degree_b'),operate: "like"},
  50. {field: 'user_school_major_b', title: __('User_school_major_b'),operate: "like"},
  51. {
  52. field: 'buttons',
  53. width: "120px",
  54. title: __('按钮组'),
  55. table: table,
  56. events: Table.api.events.operate,
  57. buttons: [
  58. {
  59. name: 'detail',
  60. text: __('查看社会关系'),
  61. title: __('查看社会关系'),
  62. classname: 'btn btn-xs btn-primary btn-dialog',
  63. icon: 'fa fa-list',
  64. url: 'Sociogram/index',
  65. callback: function (data) {
  66. Layer.alert("接收到回传数据:" + JSON.stringify(data), {title: "回传数据"});
  67. },
  68. visible: function (row) {
  69. //返回true时按钮显示,返回false隐藏
  70. return true;
  71. }
  72. },
  73. {
  74. name: 'detail',
  75. text: __('编辑简历'),
  76. title: __('编辑简历'),
  77. classname: 'btn btn-xs btn-primary btn-dialog',
  78. icon: 'fa fa-list',
  79. url: 'Users/resume',
  80. callback: function (data) {
  81. Layer.alert("接收到回传数据:" + JSON.stringify(data), {title: "回传数据"});
  82. },
  83. visible: function (row) {
  84. //返回true时按钮显示,返回false隐藏
  85. return true;
  86. }
  87. },
  88. // {
  89. // name: 'addtabs',
  90. // text: __('新选项卡中打开'),
  91. // title: __('新选项卡中打开'),
  92. // classname: 'btn btn-xs btn-warning btn-addtabs',
  93. // icon: 'fa fa-folder-o',
  94. // url: 'example/bootstraptable/detail'
  95. // }
  96. ],
  97. formatter: Table.api.formatter.buttons
  98. },
  99. {field: 'operate', title: __('Operate'), table: table, events: Table.api.events.operate, formatter: Table.api.formatter.operate}
  100. ]
  101. ]
  102. });
  103. // 为表格绑定事件
  104. Table.api.bindevent(table);
  105. },
  106. add: function () {
  107. Controller.api.bindevent();
  108. },
  109. edit: function () {
  110. Controller.api.bindevent();
  111. },
  112. api: {
  113. bindevent: function () {
  114. Form.api.bindevent($("form[role=form]"));
  115. }
  116. }
  117. };
  118. require(['upload'], function (Upload) {
  119. Upload.api.plupload($('.btn-stock-file'), function (data, ret) {
  120. Fast.api.ajax({
  121. url: 'users/import',
  122. data: {file: data.url},
  123. }, function (data, ret) {
  124. if (ret.code==1) {
  125. layer.msg(ret.msg,{icon:1,time:2000,shade:0.4},function() {
  126. window.location.reload()//解析成功
  127. });
  128. }
  129. //table.bootstrapTable('refresh');
  130. },
  131. function (data, ret) {
  132. var param = JSON.stringify(ret.data);
  133. layer.msg(ret.msg,{icon:0,time:1500,shade:0.4},function() {
  134. window.location.href='users/jdump?data='+param;//解析成功
  135. });
  136. });
  137. });
  138. });
  139. return Controller;
  140. });