info.js 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  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: 'info/index' + location.search,
  8. add_url: 'info/add',
  9. edit_url: 'info/edit',
  10. del_url: 'info/del',
  11. multi_url: 'info/multi',
  12. import_url: 'info/import',
  13. table: 'info',
  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.nickname', title: __('User.nickname'), operate: 'LIKE'},
  27. {field: 'content', title: __('Content'), operate: 'LIKE'},
  28. {field: 'images', title: __('Images'), operate: false, events: Table.api.events.image, formatter: Table.api.formatter.images},
  29. {field: 'city', title: __('City')},
  30. {field: 'position', title: __('Position')},
  31. {field: 'created_at', title: __('创建时间'),operate: "RANGE",formatter: Table.api.formatter.datetime,addclass:'datetimerange'},
  32. {field: 'like_count', title: __('点赞数'),operate: false,},
  33. {field: 'comments_count', title: __('评论数'),operate: false,},
  34. {field: 'is_rec', title: __('Is_rec'),searchList:{0:'否',1:'是'},formatter: Table.api.formatter.label},
  35. {field: 'status', title: __('状态'),searchList:{0:'未审核',1:'通过',2:'拒绝'},formatter: Table.api.formatter.label},
  36. {
  37. field: 'buttons',
  38. width: "120px",
  39. title: __('评论'),
  40. table: table,
  41. events: Table.api.events.operate,
  42. operate: false,
  43. buttons: [
  44. {
  45. name: 'detail',
  46. text: __('查看评论'),
  47. title: __('查看评论'),
  48. classname: 'btn btn-xs btn-primary btn-click',
  49. icon: 'fa fa-list',
  50. callback: function (data) {
  51. Layer.alert("接收到回传数据:" + JSON.stringify(data), {title: "回传数据"});
  52. },
  53. visible: function (row) {
  54. //返回true时按钮显示,返回false隐藏
  55. return true;
  56. },
  57. click(row,data){
  58. let a=$('.commentLink')
  59. if(!a.length) {
  60. $('body').append('<a class="btn-addtabs commentLink" href="comment"></a>')
  61. }
  62. $('.commentLink').attr('href','comment?info='+data.id)
  63. $('.commentLink').trigger('click')
  64. }
  65. }
  66. ],
  67. formatter: Table.api.formatter.buttons
  68. },
  69. {field: 'operate', title: __('Operate'), table: table, events: Table.api.events.operate, formatter: Table.api.formatter.operate}
  70. ]
  71. ]
  72. });
  73. // 为表格绑定事件
  74. Table.api.bindevent(table);
  75. },
  76. add: function () {
  77. Controller.api.bindevent();
  78. },
  79. edit: function () {
  80. Controller.api.bindevent();
  81. },
  82. api: {
  83. bindevent: function () {
  84. Form.api.bindevent($("form[role=form]"));
  85. }
  86. }
  87. };
  88. return Controller;
  89. });