work.js 3.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  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/authentication/work/index' + location.search,
  8. // add_url: 'user/authentication/work/add',
  9. // edit_url: 'user/authentication/work/edit',
  10. // del_url: 'user/authentication/work/del',
  11. multi_url: 'user/authentication/work/multi',
  12. import_url: 'user/authentication/work/import',
  13. table: 'work_authentication',
  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. fixedColumns: true,
  23. fixedRightNumber: 1,
  24. columns: [
  25. [
  26. {checkbox: true},
  27. {field: 'id', title: __('Id')},
  28. {field: 'uid', title: __('Uid')},
  29. {field: 'work', title: __('Work'), operate: 'LIKE'},
  30. {field: 'company_name', title: __('Company_name'), operate: 'LIKE'},
  31. {field: 'authentication_method', title: __('Authentication_method'), operate: 'LIKE'},
  32. {field: 'image', title: __('Image'), operate: false, events: Table.api.events.image, formatter: Table.api.formatter.image},
  33. {field: 'createtime', title: __('Createtime'), operate:'RANGE', addclass:'datetimerange', autocomplete:false},
  34. {field: 'audittime', title: __('Audittime'), operate:'RANGE', addclass:'datetimerange', autocomplete:false},
  35. {field: 'refuse_cause', title: __('原因'), operate: 'LIKE'},
  36. // {field: 'status', title: __('Status')},
  37. {
  38. field: 'status',
  39. title: __('Status'),
  40. searchList: {"1": '通过', "2": '驳回',"0": '待审核'},
  41. // custom: {"1": 'success', "2": 'danger'},
  42. formatter: Table.api.formatter.status
  43. },
  44. {field: 'operate', title: __('Operate'), table: table, events: Table.api.events.operate,
  45. buttons:[
  46. {
  47. name:'audit',
  48. text: '审核',
  49. classname: 'btn btn-xs btn-primary btn-dialog',
  50. icon: 'fa fa-list',
  51. url: 'user/authentication/work/audit',
  52. visible:function (row){
  53. if(row.status == 0){
  54. return true;
  55. }
  56. return false;
  57. }
  58. }
  59. ],
  60. formatter: Table.api.formatter.operate
  61. }
  62. ]
  63. ]
  64. });
  65. // 为表格绑定事件
  66. Table.api.bindevent(table);
  67. },
  68. add: function () {
  69. Controller.api.bindevent();
  70. },
  71. audit: function () {
  72. Controller.api.bindevent();
  73. },
  74. api: {
  75. bindevent: function () {
  76. Form.api.bindevent($("form[role=form]"));
  77. }
  78. }
  79. };
  80. return Controller;
  81. });