spider_log.js 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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: 'cms/spider_log/index' + location.search,
  8. add_url: 'cms/spider_log/add',
  9. edit_url: 'cms/spider_log/edit',
  10. del_url: 'cms/spider_log/del',
  11. multi_url: 'cms/spider_log/multi',
  12. import_url: 'cms/spider_log/import',
  13. table: 'cms_spider_log',
  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. columns: [
  23. [
  24. {checkbox: true},
  25. {field: 'id', title: __('Id')},
  26. {field: 'type', title: __('Type'), searchList: {"index": __('Index'), "archives": __('Archives'), "page": __('Page'), "special": __('Special'), "channel": __('Channel'), "diyform": __('Diyform'), "tag": __('Tag'), "user": __('User')}, formatter: Table.api.formatter.normal},
  27. {field: 'aid', title: __('Aid'), sortable: true, formatter: Table.api.formatter.search},
  28. {field: 'name', title: __('Name'), searchList: Config.nameList, formatter: Table.api.formatter.label},
  29. {field: 'url', title: __('Url'), operate: 'LIKE', formatter: Table.api.formatter.url},
  30. {field: 'nums', title: __('Nums'), sortable: true, formatter: Table.api.formatter.search, operate: 'BETWEEN'},
  31. {field: 'lastdata', title: __('Lastdata'), operate: false, visible: false},
  32. {field: 'firsttime', title: __('Firsttime'), sortable: true, operate: 'RANGE', addclass: 'datetimerange', autocomplete: false, formatter: Table.api.formatter.datetime},
  33. {field: 'lasttime', title: __('Lasttime'), sortable: true, operate: 'RANGE', addclass: 'datetimerange', autocomplete: false, formatter: Table.api.formatter.datetime},
  34. {field: 'operate', title: __('Operate'), table: table, events: Table.api.events.operate, formatter: Table.api.formatter.operate}
  35. ]
  36. ]
  37. });
  38. // 为表格绑定事件
  39. Table.api.bindevent(table);
  40. },
  41. add: function () {
  42. Controller.api.bindevent();
  43. },
  44. edit: function () {
  45. Controller.api.bindevent();
  46. },
  47. api: {
  48. bindevent: function () {
  49. Form.api.bindevent($("form[role=form]"));
  50. }
  51. }
  52. };
  53. return Controller;
  54. });