renwu.js
6.3 KB
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefined, Backend, Table, Form) {
var Controller = {
index: function () {
// 初始化表格参数配置
Table.api.init({
extend: {
index_url: 'renwu/index' + location.search,
add_url: 'renwu/add',
edit_url: 'renwu/edit',
del_url: 'renwu/del',
multi_url: 'renwu/multi',
table: 'renwu',
}
});
var table = $("#table");
// 初始化表格
table.bootstrapTable({
url: $.fn.bootstrapTable.defaults.extend.index_url,
pk: 'id',
sortName: 'id',
columns: [
[
{checkbox: true},
{field: 'id', title: __('Id')},
{field: 'order_sn', title: __('Order_sn'), operate: 'LIKE'},
// {field: 'user_id', title: __('User_id')},
// {field: 'vip_id', title: __('Vip_id')},
{field: 'user.nickname', title: __('User.nickname'), operate: 'LIKE'},
{field: 'user.mobile', title: __('User.mobile'), operate: 'LIKE'},
{field: 'user.address', title: __('User.address'), operate: 'LIKE'},
{field: 'user.address_con', title: __('User.address_con'), operate: 'LIKE'},
{field: 'user.car_num', title: __('User.car_num'), operate: 'LIKE'},
{field: 'user.color', title: __('User.color'), operate: 'LIKE'},
{field: 'user.car_type', title: __('User.car_type'), operate: 'LIKE'},
// {field: 'user.vip', title: __('User.vip')},
{field: 'vip.title', title: __('Vip.title'), operate: false},
{
field: 'type',
title: __('Type'),
searchList: {"1": __('Type 1'), "0": __('Type 0'), "2": __('Type 2')},
formatter: Table.api.formatter.normal
},
// {field: 'xi_id', title: __('Xi_id')},
{
field: 'xi_type',
title: __('Xi_type'),
searchList: {"1": __('Xi_type 1'), "0": __('Xi_type 0'), "2": __('Xi_type 2')},
formatter: Table.api.formatter.normal
},
// {field: 'xi_images', title: __('Xi_images'), events: Table.api.events.image, formatter: Table.api.formatter.images},
// {field: 'zhao_id', title: __('Zhao_id')},
{
field: 'zhao_type',
title: __('Zhao_type'),
searchList: {"1": __('Zhao_type 1'), "0": __('Zhao_type 0'), "2": __('Zhao_type 2')},
formatter: Table.api.formatter.normal
},
// {field: 'zhao_images', title: __('Zhao_images'), events: Table.api.events.image, formatter: Table.api.formatter.images},
{field: 'car_address', title: __('Car_address'), operate: 'LIKE'},
// {field: 'lat', title: __('Lat')},
// {field: 'lng', title: __('Lng')},
{
field: 'createtime',
title: __('Createtime'),
operate: 'RANGE',
addclass: 'datetimerange',
formatter: Table.api.formatter.datetime
},
{
field: 'startime',
title: __('Startime'),
operate: 'RANGE',
addclass: 'datetimerange',
formatter: Table.api.formatter.datetime
},
{
field: 'endtime',
title: __('Endtime'),
operate: 'RANGE',
addclass: 'datetimerange',
formatter: Table.api.formatter.datetime
},
{
field: 'updatetime',
title: __('Updatetime'),
operate: 'RANGE',
addclass: 'datetimerange',
formatter: Table.api.formatter.datetime
},
{
field: 'operate',
title: __('Operate'),
table: table,
events: Table.api.events.operate,
formatter: Table.api.formatter.operate,
buttons: [
{
name: 'yuangong',
text: __('查看员工'),
title: __('查看员工'),
classname: 'btn btn-xs btn-primary btn-dialog',
icon: 'fa fa-send',
url: 'renwu/look?id={id}',
visible: function (row) {
//返回true时按钮显示,返回false隐藏
return true;
}
}
]
},
]
]
});
// 为表格绑定事件
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;
});