hotel.js
6.9 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
define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefined, Backend, Table, Form) {
var Controller = {
index: function () {
// 初始化表格参数配置
Table.api.init({
extend: {
index_url: 'hotel/hotel/index' + location.search,
add_url: 'hotel/hotel/add',
edit_url: 'hotel/hotel/edit',
del_url: 'hotel/hotel/del',
multi_url: 'hotel/hotel/multi',
table: 'shop',
}
});
var table = $("#table");
// 初始化表格
table.bootstrapTable({
url: $.fn.bootstrapTable.defaults.extend.index_url,
pk: 'id',
sortName: 'id',
searchFormVisible: true,
columns: [
[
{checkbox: true},
{field: 'id', title: __('酒店ID')},
{field: 'name', title: __('酒店名称')},
{field: 'user.id', title: __('管理员ID'),visible: false},
{field: 'admin.username', title: __('代理商管理员姓名')},
{field: 'shop_admin.name', title: __('管理员姓名')},
{field: 'building_count', title: __('楼宇数'),operate:false},
{field: 'room_count', title: __('房间数'),operate:false},
{field: 'clean_count', title: __('清洁工数'),operate:false},
{field: 'serve_count', title: __('客服数'),operate:false},
{field: 'province_id', title: __('Province_id'),visible: false,operate:false},
{field: 'city_id', title: __('City_id'),visible: false,operate:false},
{field: 'county_id', title: __('County_id'),visible: false,operate:false},
{field: 'hotel_location', title: __('Hotel_location'),visible: false,operate:false},
{field: 'lon', title: __('Lon'), operate:'BETWEEN',visible: false,operate:false},
{field: 'lat', title: __('Lat'), operate:'BETWEEN',visible: false,operate:false},
{field: 'restricted_distance', title: __('Restricted_distance'),visible: false,operate:false},
{field: 'clean_run', title: __('Clean_run'), searchList: {"1":__('Clean_run 1'),"2":__('Clean_run 2')}, formatter: Table.api.formatter.normal,visible: false,operate:false},
{field: 'status', title: __('Status'), searchList: {"1":__('Status 1'),"2":__('Status 2')}, formatter: Table.api.formatter.status,operate:false},
{field: 'createtime', title: __('Createtime'), operate:'RANGE', addclass:'datetimerange', formatter: Table.api.formatter.datetime,operate:false},
// {field: 'operate', title: __('Operate'), table: table, events: Table.api.events.operate, formatter: Table.api.formatter.operate,operate:false}
{
field: 'buttons',
title:__('操作'),
table: table,
events: Table.api.events.operate,
operate:false,
buttons: [
{
name: 'detail',
text: __('查看'),
title: __('查看'),
classname: 'btn btn-xs btn-success btn-dialog',
// icon: 'fa fa-list',
url: 'hotel/hotel/detail',
callback: function (data) {
Layer.alert("接收到回传数据:" + JSON.stringify(data), {title: "回传数据"});
},
visible: function (row) {
//返回true时按钮显示,返回false隐藏
return true;
}
},
{
name: 'edit',
text: __('编辑'),
title: __('编辑'),
classname: 'btn btn-xs btn-primary btn-dialog',
// icon: 'fa fa-list',
url: 'hotel/hotel/edit',
callback: function (data) {
Layer.alert("接收到回传数据:" + JSON.stringify(data), {title: "回传数据"});
},
visible: function (row) {
//返回true时按钮显示,返回false隐藏
return true;
}
},
{
name: 'del',
text: __('删除'),
title: __('删除'),
classname: 'btn btn-xs btn-danger btn-magic btn-ajax',
// icon: 'glyphicon glyphicon-remove',
url: 'hotel/hotel/del',
confirm: '删除将无法找回,谨慎操作',
success: function (data, ret) {
// console.log(data);
// Layer.alert(ret.msg + ",返回数据:" + JSON.stringify(data));
//如果需要阻止成功提示,则必须使用return false;
//return false;
$(".btn-refresh").trigger("click");
},
error: function (data, ret) {
$(".btn-refresh").trigger("click");
}
},
],
formatter: Table.api.formatter.buttons
}
]
]
});
// 为表格绑定事件
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;
});