head.js 8.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  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: 'user/user/index',
  8. // add_url: 'user/user/add',
  9. // edit_url: 'user/user/edit',
  10. // del_url: 'user/user/del',
  11. multi_url: 'user/user/multi',
  12. table: 'user',
  13. }
  14. });
  15. var table = $("#table");
  16. // 初始化表格
  17. table.bootstrapTable({
  18. url: $.fn.bootstrapTable.defaults.extend.index_url,
  19. pk: 'id',
  20. sortName: 'user.id',
  21. columns: [
  22. [
  23. {checkbox: true},
  24. {field: 'id', title: __('Id'), sortable: true},
  25. // {field: 'group.name', title: __('Group')},
  26. {field: 'username', title: __('Username'), operate: 'LIKE'},
  27. // {field: 'nickname', title: __('Nickname'), operate: 'LIKE'},
  28. // {field: 'email', title: __('Email'), operate: 'LIKE'},
  29. {field: 'mobile', title: __('手机号'), operate: 'LIKE'},
  30. // {field: 'gender', title: __('性别'), formatter:Table.api.formatter.normal, searchList:{1:'男',0:'女'}},
  31. {field: 'gender', title: __('性别'), formatter:Table.api.formatter.normal, searchList:{1:'男',0:'女'}},
  32. {field: 'avatar_new', title: __('头像'), events: Table.api.events.image, formatter: Table.api.formatter.image, operate: false},
  33. {field: 'real_image', title: __('认证照片'), events: Table.api.events.image, formatter: Table.api.formatter.image, operate: false},
  34. // {field: 'level', title: __('Level'), operate: 'BETWEEN', sortable: true},
  35. // {field: 'gender', title: __('Gender'), formatter:Table.api.formatter.normal,searchList: {1: __('Male'), 0: __('Female')}},
  36. // {field: 'height', title: __('身高')},
  37. // {field: 'education', title: __('学历')},
  38. // {field: 'marriage', title: __('婚姻状态'), formatter:Table.api.formatter.normal,searchList: {1: __('已婚'), 0: __('未婚')}},
  39. // {field: 'constellation', title: __('星座')},
  40. // {field: 'wx', title: __('微信')},
  41. // {field: 'id_authentication', title: __('身份认证'), formatter:Table.api.formatter.status,searchList: {1: __('已认证'), 0: __('未认证'),2:__('审核中')}},
  42. // {field: 'work_authentication', title: __('工作认证'), formatter:Table.api.formatter.status,searchList: {1: __('已认证'), 0: __('未认证'),2:__('审核中')}},
  43. // {field: 'education_authentication', title: __('学历认证'), formatter:Table.api.formatter.status,searchList: {1: __('已认证'), 0: __('未认证'),2:__('审核中')}},
  44. // {field: 'score', title: __('Score'), operate: 'BETWEEN', sortable: true},
  45. // {field: 'successions', title: __('Successions'), visible: false, operate: 'BETWEEN', sortable: true},
  46. // {field: 'money', title: __('余额'), visible: true, operate: 'BETWEEN', sortable: true},
  47. {field: 'maxsuccessions', title: __('Maxsuccessions'), visible: false, operate: 'BETWEEN', sortable: true},
  48. // {field: 'logintime', title: __('Logintime'), formatter: Table.api.formatter.datetime, operate: 'RANGE', addclass: 'datetimerange', sortable: true},
  49. // {field: 'loginip', title: __('Loginip'), formatter: Table.api.formatter.search},
  50. // {field: 'jointime', title: __('Jointime'), formatter: Table.api.formatter.datetime, operate: 'RANGE', addclass: 'datetimerange', sortable: true},
  51. // {field: 'joinip', title: __('Joinip'), formatter: Table.api.formatter.search},
  52. {field: 'image_audit', title: __('审核状态'), formatter: Table.api.formatter.status, searchList: {0: __('待审核'), 1: __('通过'), 2: __('驳回')}},
  53. // {field: 'is_recommend', title: '推荐', formatter: Table.api.formatter.status, searchList: {1: '推荐', 0: '不推荐'}},
  54. // {field: 'is_recommend', title: __('推荐'), operate: false, formatter: Controller.api.custom},
  55. {field: 'operate', title: __('Operate'), table: table, events: Table.api.events.operate, formatter: Table.api.formatter.operate,
  56. buttons:[
  57. {
  58. name:'image_audit',
  59. text:'通过',
  60. title:'通过审核',
  61. confirm:'确定通过审核?',
  62. url:'user/head/audit/audit/1',
  63. classname: 'btn btn-xs btn-success btn-ajax',
  64. visible:function (row){
  65. if(row.image_audit == 0){
  66. return true;
  67. }
  68. },
  69. success:function (){
  70. table.bootstrapTable('refresh');
  71. }
  72. },
  73. {
  74. name:'image_audit',
  75. text:'驳回',
  76. title:'驳回审核',
  77. // confirm:'确定驳回审核?',
  78. // url:'user/head/audit/audit/2',
  79. // classname: 'btn btn-xs btn-danger btn-ajax',
  80. classname: 'btn btn-xs btn-danger btn-click',
  81. visible:function (row){
  82. if(row.image_audit == 0){
  83. return true;
  84. }
  85. },
  86. // success:function (){
  87. // table.bootstrapTable('refresh');
  88. // }
  89. click: function (e, row) {
  90. Layer.prompt({
  91. title: "驳回理由",
  92. success: function (layero) {
  93. $("input", layero).prop("placeholder", "填写驳回理由");
  94. }
  95. }, function (value) {
  96. Fast.api.ajax({
  97. url: "user/head/audit/audit/" + 2 + "/ids/" + row.id,
  98. data:{
  99. 'avatar_reason':value
  100. }
  101. }, function (data, ret) {
  102. console.log(1);
  103. $(".btn-refresh").trigger("click");
  104. Layer.closeAll();
  105. });
  106. });
  107. return false;
  108. }
  109. },
  110. ]
  111. }
  112. ]
  113. ]
  114. });
  115. // 为表格绑定事件
  116. Table.api.bindevent(table);
  117. },
  118. add: function () {
  119. Controller.api.bindevent();
  120. },
  121. edit: function () {
  122. Controller.api.bindevent();
  123. },
  124. api: {
  125. bindevent: function () {
  126. Form.api.bindevent($("form[role=form]"));
  127. },
  128. custom: function (value, row, index) {
  129. //添加上btn-change可以自定义请求的URL进行数据处理
  130. return '<a class="btn-change text-success" data-url="user/user/change" data-confirm="确认切换状态?" data-id="' + row.id + '"><i class="fa ' + (row.is_recommend == '0' ? 'fa-toggle-on fa-flip-horizontal text-gray' : 'fa-toggle-on') + ' fa-2x"></i></a>';
  131. },
  132. }
  133. };
  134. return Controller;
  135. });