1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
| define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefined, Backend, Table, Form) {
|
| var Controller = {
| index: function () {
| // 初始化表格参数配置
| Table.api.init({
| extend: {
| index_url: 'user/user/index',
| add_url: 'user/user/add',
| edit_url: 'user/user/edit',
| del_url: 'user/user/del',
| multi_url: 'user/user/multi',
| table: 'user',
| }
| });
|
| var table = $("#table");
|
| // 初始化表格
| table.bootstrapTable({
| url: $.fn.bootstrapTable.defaults.extend.index_url,
| pk: 'id',
| sortName: 'id',
| fixedColumns: true,
| fixedRightNumber: 1,
| columns: [
| [
| {checkbox: true},
| {field: 'id', title: __('Id')},
| {field: 'username', title: __('Username'), operate: 'LIKE'},
| {field: 'nickname', title: __('Nickname'), operate: 'LIKE'},
| {field: 'email', title: __('Email'), operate: 'LIKE'},
| {field: 'mobile', title: __('Mobile'), operate: 'LIKE'},
| {field: 'avatar', title: __('Avatar'), operate: 'LIKE', events: Table.api.events.image, formatter: Table.api.formatter.image},
| {field: 'true_name', title: __('True_name'), operate: 'LIKE'},
| {field: 'zfb_account', title: __('Zfb_account'), operate: 'LIKE'},
| {field: 'level', title: __('Level'), searchList: {"0":__('Level 0'),"1":__('Level 1'),"2":__('Level 2'),"3":__('Level 3')}, formatter: Table.api.formatter.normal},
| {field: 'invitation_code', title: __('Invitation_code'), operate: 'LIKE'},
| {field: 'pdd_authority_ios', title: __('Pdd_authority_ios'), searchList: {"1":__('Pdd_authority_ios 1'),"0":__('Pdd_authority_ios 0')}, formatter: Table.api.formatter.normal},
| {field: 'pdd_authority_android', title: __('Pdd_authority_android'), searchList: {"0":__('Pdd_authority_android 0'),"1":__('Pdd_authority_android 1')}, formatter: Table.api.formatter.normal},
| {field: 'wx', title: __('是否微信授权'), operate: false,formatter: function (value,row) {
| return value == null ? '否':'是';
| }},
| {field: 'common_relation_id', title: __('Common_relation_id'), operate: 'LIKE'},
| {field: 'money', title: __('Money'), operate:'BETWEEN'},
| {field: 'tb_account', title: __('Tb_account'), operate: 'LIKE'},
| {field: 'score', title: __('Score')},
| {field: 'fans', title: __('Fans')},
| {field: 'user.nickname', title: __('上级昵称'), operate: 'LIKE'},
| {field: 'user.mobile', title: __('上级手机号'), operate: 'LIKE'},
| {field: 'logintime', title: __('Logintime'), operate:'RANGE', addclass:'datetimerange', autocomplete:false, formatter: Table.api.formatter.datetime},
| {field: 'loginip', title: __('Loginip'), operate: 'LIKE'},
| {field: 'joinip', title: __('Joinip'), operate: 'LIKE'},
| {field: 'jointime', title: __('Jointime'), operate:'RANGE', addclass:'datetimerange', autocomplete:false, formatter: Table.api.formatter.datetime},
| {field: 'createtime', title: __('Createtime'), operate:'RANGE', addclass:'datetimerange', autocomplete:false, formatter: Table.api.formatter.datetime},
| {field: 'updatetime', title: __('Updatetime'), operate:'RANGE', addclass:'datetimerange', autocomplete:false, formatter: Table.api.formatter.datetime},
| {field: 'status', title: __('Status'), searchList: {"30":__('Status 30')}, formatter: Table.api.formatter.status},
|
| {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;
| });
|
|