video_point_user.js 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  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: 'video_point_user/index' + location.search,
  8. add_url: 'video_point_user/add',
  9. edit_url: 'video_point_user/edit',
  10. del_url: 'video_point_user/del',
  11. multi_url: 'video_point_user/multi',
  12. import_url: 'video_point_user/import',
  13. table: 'video_point_user',
  14. }
  15. });
  16. var table = $("#table");
  17. // 初始化表格
  18. table.bootstrapTable({
  19. url: $.fn.bootstrapTable.defaults.extend.index_url,
  20. pk: 'video_point_user.id',
  21. sortName: 'video_point_user.id',
  22. searchFormVisible:true,
  23. columns: [
  24. [
  25. {field: 'id', title: __('Id')},
  26. {field: 'user.nickname', title: __('用户')},
  27. {field: 'user.mobile', title: __('手机号'), operate: 'LIKE'},
  28. {field: 'user.mob_brand', title: __('手机品牌'), operate: 'LIKE'},
  29. {field: 'user.mob_model', title: __('手机型号'), operate: 'LIKE'},
  30. {
  31. field: 'user.avatar',
  32. title: __('头像'),
  33. events: Table.api.events.image,
  34. formatter: Table.api.formatter.image,
  35. operate: false
  36. },
  37. {
  38. field: 'user.gender',
  39. title: __('性别'),
  40. searchList: {1: __('男'), 2: __('Female')},
  41. formatter: Table.api.formatter.label
  42. },
  43. {
  44. field: 'user.age',
  45. title: __('年龄'),
  46. operate: "BETWEEN"
  47. },
  48. {
  49. field: 'user.city_name',
  50. title: __('地区'),
  51. searchList: function (column) {
  52. return Template('sourcetpl', {})
  53. }
  54. },
  55. {
  56. field: 'userinfo.right_per',
  57. title: __('正确率(%)'),
  58. operate: "BETWEEN",
  59. formatter: (a)=>{
  60. return `${a}%`
  61. }
  62. },
  63. {
  64. field: 'userinfo.custom',
  65. title: '自定义',
  66. operate: 'LIKE',
  67. formatter(info){
  68. if(!info){
  69. return ''
  70. }
  71. let str=[]
  72. info.forEach(item=>{
  73. str.push(`<div>${item.title}:${item.value}</div>`)
  74. })
  75. return str.join('')
  76. }
  77. },
  78. {
  79. field: 'user.jointime',
  80. title: __('Jointime'),
  81. formatter: Table.api.formatter.datetime,
  82. operate: 'RANGE',
  83. addclass: 'datetimerange',
  84. sortable: true
  85. },
  86. {
  87. field: 'user.status',
  88. title: __('Status'),
  89. formatter: Table.api.formatter.status,
  90. searchList: {normal: __('Normal'), hidden: __('Hidden')}
  91. },
  92. {field: 'point.title', title: __('卡点名称'),formatter(a){
  93. return a.length>15?`<span title="${a}">${a.substr(0,15)}...</span>`:a
  94. }},
  95. {field: 'point.type', title: __('卡点类型'),searchList:{'decide':'判断题','choose':'选择题','vote':'投票','wenda':'问答'},formatter:Table.api.formatter.label},
  96. {field: 'key', title: __('Key'),formatter(a){
  97. return a.length>15?`<span title="${a}">${a.substr(0,15)}...</span>`:a
  98. }},
  99. {field: 'is_right', title: __('Is_right'),searchList:{1:'正确',0:'错误'},formatter:Table.api.formatter.label},
  100. {field: 'created_at', title: __('Created_at'),addclass: 'datetimerange',formatter: Table.api.formatter.datetime},
  101. {field: 'time', title: __('Time'), operate:'between'},
  102. //{field: 'operate', title: __('Operate'), table: table, events: Table.api.events.operate, formatter: Table.api.formatter.operate}
  103. ]
  104. ]
  105. });
  106. // 为表格绑定事件
  107. Table.api.bindevent(table);
  108. },
  109. add: function () {
  110. Controller.api.bindevent();
  111. },
  112. edit: function () {
  113. Controller.api.bindevent();
  114. },
  115. api: {
  116. bindevent: function () {
  117. Form.api.bindevent($("form[role=form]"));
  118. }
  119. }
  120. };
  121. return Controller;
  122. });