123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126 |
- define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefined, Backend, Table, Form) {
- var Controller = {
- index: function () {
- // 初始化表格参数配置
- Table.api.init({
- extend: {
- index_url: 'video_point_user/index' + location.search,
- add_url: 'video_point_user/add',
- edit_url: 'video_point_user/edit',
- del_url: 'video_point_user/del',
- multi_url: 'video_point_user/multi',
- import_url: 'video_point_user/import',
- table: 'video_point_user',
- }
- });
- var table = $("#table");
- // 初始化表格
- table.bootstrapTable({
- url: $.fn.bootstrapTable.defaults.extend.index_url,
- pk: 'video_point_user.id',
- sortName: 'video_point_user.id',
- searchFormVisible:true,
- columns: [
- [
- {field: 'id', title: __('Id')},
- {field: 'user.nickname', title: __('用户')},
- {field: 'user.mobile', title: __('手机号'), operate: 'LIKE'},
- {field: 'user.mob_brand', title: __('手机品牌'), operate: 'LIKE'},
- {field: 'user.mob_model', title: __('手机型号'), operate: 'LIKE'},
- {
- field: 'user.avatar',
- title: __('头像'),
- events: Table.api.events.image,
- formatter: Table.api.formatter.image,
- operate: false
- },
- {
- field: 'user.gender',
- title: __('性别'),
- searchList: {1: __('男'), 2: __('Female')},
- formatter: Table.api.formatter.label
- },
- {
- field: 'user.age',
- title: __('年龄'),
- operate: "BETWEEN"
- },
- {
- field: 'user.city_name',
- title: __('地区'),
- searchList: function (column) {
- return Template('sourcetpl', {})
- }
- },
- {
- field: 'userinfo.right_per',
- title: __('正确率(%)'),
- operate: "BETWEEN",
- formatter: (a)=>{
- return `${a}%`
- }
- },
- {
- field: 'userinfo.custom',
- title: '自定义',
- operate: 'LIKE',
- formatter(info){
- if(!info){
- return ''
- }
- let str=[]
- info.forEach(item=>{
- str.push(`<div>${item.title}:${item.value}</div>`)
- })
- return str.join('')
- }
- },
- {
- field: 'user.jointime',
- title: __('Jointime'),
- formatter: Table.api.formatter.datetime,
- operate: 'RANGE',
- addclass: 'datetimerange',
- sortable: true
- },
- {
- field: 'user.status',
- title: __('Status'),
- formatter: Table.api.formatter.status,
- searchList: {normal: __('Normal'), hidden: __('Hidden')}
- },
- {field: 'point.title', title: __('卡点名称'),formatter(a){
- return a.length>15?`<span title="${a}">${a.substr(0,15)}...</span>`:a
- }},
- {field: 'point.type', title: __('卡点类型'),searchList:{'decide':'判断题','choose':'选择题','vote':'投票','wenda':'问答'},formatter:Table.api.formatter.label},
- {field: 'key', title: __('Key'),formatter(a){
- return a.length>15?`<span title="${a}">${a.substr(0,15)}...</span>`:a
- }},
- {field: 'is_right', title: __('Is_right'),searchList:{1:'正确',0:'错误'},formatter:Table.api.formatter.label},
- {field: 'created_at', title: __('Created_at'),addclass: 'datetimerange',formatter: Table.api.formatter.datetime},
- {field: 'time', title: __('Time'), operate:'between'},
- //{field: 'operate', title: __('Operate'), table: table, events: Table.api.events.operate, formatter: Table.api.formatter.operate}
- ]
- ]
- });
- // 为表格绑定事件
- Table.api.bindevent(table);
- },
- add: function () {
- Controller.api.bindevent();
- },
- edit: function () {
- Controller.api.bindevent();
- },
- api: {
- bindevent: function () {
- Form.api.bindevent($("form[role=form]"));
- }
- }
- };
- return Controller;
- });
|