userquestionlog.js 3.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  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: 'userquestionlog/index' + location.search,
  8. add_url: 'userquestionlog/add',
  9. edit_url: 'userquestionlog/edit',
  10. del_url: 'userquestionlog/del',
  11. multi_url: 'userquestionlog/multi',
  12. import_url: 'userquestionlog/import',
  13. table: 'user_question_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: 'user_id', title: __('User_id')},
  27. {field: 'user.nickname', title: __('User.nickname'), operate: 'LIKE', table: table, class: 'autocontent', formatter: Table.api.formatter.content},
  28. {field: 'user.mobile', title: __('User.mobile'), operate: 'LIKE'},
  29. {field: 'user.avatar', title: __('User.avatar'), operate: 'LIKE', events: Table.api.events.image, formatter: Table.api.formatter.image},
  30. {field: 'jigou_id', title: __('Jigou_id')},
  31. {field: 'jigou.title', title: __('Jigou.title'), operate: 'LIKE', table: table, class: 'autocontent', formatter: Table.api.formatter.content},
  32. {field: 'is_right', title: __('Is_right'), searchList: {"1":__('Is_right 1'),"0":__('Is_right 0')}, formatter: Table.api.formatter.normal},
  33. {field: 'question_id', title: __('Question_id')},
  34. {field: 'question.title', title: __('Question.title'), operate: 'LIKE', table: table, class: 'autocontent', formatter: Table.api.formatter.content},
  35. // {field: 'createdate', title: __('Createdate')},
  36. {field: 'createtime', title: __('Createtime'), operate:'RANGE', addclass:'datetimerange', autocomplete:false, formatter: Table.api.formatter.datetime},
  37. // {field: 'operate', title: __('Operate'), table: table, events: Table.api.events.operate, formatter: Table.api.formatter.operate}
  38. ]
  39. ]
  40. });
  41. // 为表格绑定事件
  42. Table.api.bindevent(table);
  43. },
  44. add: function () {
  45. Controller.api.bindevent();
  46. },
  47. edit: function () {
  48. Controller.api.bindevent();
  49. },
  50. api: {
  51. bindevent: function () {
  52. Form.api.bindevent($("form[role=form]"));
  53. }
  54. }
  55. };
  56. return Controller;
  57. });