mobile_upload.js 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  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: 'mobile_upload/index' + location.search,
  8. add_url: 'mobile_upload/add',
  9. edit_url: 'mobile_upload/edit',
  10. del_url: 'mobile_upload/del',
  11. multi_url: 'mobile_upload/multi',
  12. import_url: 'mobile_upload/import',
  13. table: 'mobile_upload',
  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. searchFormVisible:true,
  23. columns: [
  24. [
  25. {checkbox: true},
  26. {field: 'id', title: __('编号')},
  27. {field: 'filename', title: __('Filename')},
  28. {field: 'rows_total', title: __('Rows_total')},
  29. {
  30. field: 'id',
  31. operate: false,
  32. title: "执行情况",
  33. formatter(_,info){
  34. let a=[]
  35. a.push(`<span>总记录数:${info.rows_total}</span>`)
  36. a.push(`<span>成功:${info.rows_succ}</span>`)
  37. a.push(`<span>失败:${info.rows_fail}</span>`)
  38. a.push(`<span>用时:${info.run_time}秒</span>`)
  39. if(info.rows_fail>0){
  40. a.push(`【<a target="_blank" href="${info.filename_error}">下载错误清单</a>】`)
  41. }
  42. return a.join(' ')
  43. }
  44. },
  45. {field: 'status', title: __('状态'),formatter: Table.api.formatter.label,searchList:{0:'待导入',1:'导入中',2:'导入完成'}},
  46. {field: 'create_time', title: __('Create_time'),formatter: Table.api.formatter.datetime,addClass:'datetimerange',operate: 'range'},
  47. {
  48. field: 'buttons',
  49. title: __('错误信息'),
  50. events: Table.api.events.operate,
  51. table: table,
  52. formatter: Table.api.formatter.buttons,
  53. operate: false,
  54. buttons:[
  55. {
  56. name: 'detail',
  57. text: __('查看'),
  58. title: __('查看'),
  59. classname: 'btn btn-xs btn-primary btn-dialog',
  60. icon: 'fa fa-list',
  61. url: 'mobile_upload/error_log?aaa=1',
  62. callback: function (data) {
  63. },
  64. visible: function (row) {
  65. //返回true时按钮显示,返回false隐藏
  66. return table.data('operate-error_log') && row.rows_fail>0;
  67. }
  68. },
  69. {
  70. name: 'detail',
  71. text: __('删除'),
  72. title: __('删除'),
  73. confirm:"确认删除吗?",
  74. classname: 'btn btn-xs btn-danger btn-ajax',
  75. icon: 'fa fa-list',
  76. url: 'mobile_upload/del',
  77. callback: function (data) {
  78. },
  79. visible: function (row) {
  80. //返回true时按钮显示,返回false隐藏
  81. return table.data('operate-del');
  82. },
  83. success(){
  84. $('.btn-refresh').trigger('click')
  85. }
  86. }
  87. ]
  88. }
  89. ]
  90. ]
  91. });
  92. // 为表格绑定事件
  93. Table.api.bindevent(table);
  94. },
  95. add: function () {
  96. Controller.api.bindevent();
  97. },
  98. edit: function () {
  99. Controller.api.bindevent();
  100. },
  101. api: {
  102. bindevent: function () {
  103. Form.api.bindevent($("form[role=form]"));
  104. }
  105. }
  106. };
  107. return Controller;
  108. });