riverlist.js
6.8 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
135
136
137
138
139
140
141
142
143
144
define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefined, Backend, Table, Form) {
var Controller = {
index: function () {
// 初始化表格参数配置
Table.api.init({
extend: {
index_url: 'river/riverlist/index' + location.search,
add_url: 'river/riverlist/add',
setadmin_url: 'river/riverlist/setadmin',
edit_url: 'river/riverlist/edit',
del_url: 'river/riverlist/del',
multi_url: 'river/riverlist/multi',
import_url: 'river/riverlist/import',
table: 'river_list',
}
});
var table = $("#table");
// 初始化表格
table.bootstrapTable({
url: $.fn.bootstrapTable.defaults.extend.index_url,
pk: 'id',
sortName: 'id',
columns: [
[
{checkbox: true},
{field: 'id', title: __('Id')},
{field: 'river_code', title: __('River_code'), operate: 'LIKE'},
{field: 'name', title: __('Name'), operate: 'LIKE'},
{field: 'rivercat.name', title: __('分类'), operate: 'LIKE'},
{field: 'inspectiondepart.depart_name', title: __('部门'), operate: 'LIKE'},
{field: 'staff_name', title: __('河长'), operate: 'LIKE'},
{field: 'reservoirprovince.name', title: __('省'), operate: 'LIKE'},
{field: 'reservoirstate.name', title: __('州/市'), operate: 'LIKE'},
{field: 'reservoircounty.name', title: __('区/县'), operate: 'LIKE'},
{field: 'reservoirstreet.name', title: __('乡镇/街道'), operate: 'LIKE'},
{field: 'reservoirvillage.name', title: __('村/社'), operate: 'LIKE'},
{field: 'start_address', title: __('Start_address'), operate: 'LIKE'},
{field: 'end_address', title: __('End_address'), operate: 'LIKE'},
{field: 'banks_type', title: __('Banks_type'), operate: 'LIKE'},
{field: 'river_long', title: '长度(km)', operate: 'LIKE'},
{field: 'status', title: __('状态'), searchList: {"0":__('正常'),"1":__('隐藏')}, formatter: Table.api.formatter.normal},
{field: 'createtime', title: __('添加时间'), operate:'RANGE', addclass:'datetimerange', autocomplete:false, formatter: Table.api.formatter.datetime},
{
field: 'operate',
title: __('Operate'),
table: table,
events: Table.api.events.operate,
buttons: [
{
name: '',
text: "指定河长",
title: __('指定河长'),
classname: 'btn btn-xs btn-primary btn-dialog',
icon: 'fa fa-address-book',
url: 'river/riverlist/setadmin?rid={id}'
}
] ,formatter: Table.api.formatter.operate}
]
]
});
// 为表格绑定事件
Table.api.bindevent(table);
$('#table').on('click',".jump",function(e){
var that = this;
var options = $.extend({}, $(that).data() || {});
var row = {};
if (typeof options.tableId !== 'undefined') {
var index = parseInt(options.rowIndex);
var data = $("#" + options.tableId).bootstrapTable('getData');
row = typeof data[index] !== 'undefined' ? data[index] : {};
}
window.open(window.location.protocol+'//'+window.location.hostname+'/dist#mymap?id='+row.id);
return false;
})
},
add: function () {
$("#c-province_id").on("change", function () {
$("#c-state_id").selectPageClear();
});
$("#c-state_id").data("params", function (obj) {
return {custom: {province_id: $("#c-province_id").val()}};
});
$("#c-state_id").on("change", function () {
$("#c-county_id").selectPageClear();
});
$("#c-county_id").data("params", function (obj) {
return {custom: {state_id: $("#c-state_id").val()}};
});
$("#c-county_id").on("change", function () {
$("#c-street_id").selectPageClear();
});
$("#c-street_id").data("params", function (obj) {
return {custom: {county_id: $("#c-county_id").val()}};
});
$("#c-street_id").on("change", function () {
$("#c-village_id").selectPageClear();
});
$("#c-village_id").data("params", function (obj) {
return {custom: {street_id: $("#c-street_id").val()}};
});
Controller.api.bindevent();
},
edit: function () {
$("#c-province_id").on("change", function () {
$("#c-state_id").selectPageClear();
});
$("#c-state_id").data("params", function (obj) {
return {custom: {province_id: $("#c-province_id").val()}};
});
$("#c-state_id").on("change", function () {
$("#c-county_id").selectPageClear();
});
$("#c-county_id").data("params", function (obj) {
return {custom: {state_id: $("#c-state_id").val()}};
});
$("#c-county_id").on("change", function () {
$("#c-street_id").selectPageClear();
});
$("#c-street_id").data("params", function (obj) {
return {custom: {county_id: $("#c-county_id").val()}};
});
$("#c-street_id").on("change", function () {
$("#c-village_id").selectPageClear();
});
$("#c-village_id").data("params", function (obj) {
return {custom: {street_id: $("#c-street_id").val()}};
});
Controller.api.bindevent();
},
setadmin:function(){
Controller.api.bindevent();
},
api: {
bindevent: function () {
Form.api.bindevent($("form[role=form]"));
}
}
};
return Controller;
});