litestorefreight_regionalChoice.js
11.6 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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
//******* 地区选择插件 *******//
(function () {
/***
* 地区选择插件
* @param container
* @param datas
* @constructor
*/
function RegionalChoice(container, datas) {
this.container = container;
this.datas = datas;
this.initInterface(); // 初始化地域界面
}
RegionalChoice.prototype = {
/**
* 条件渲染
* @param alreadyIds 已存在的区域ID: 用于新增
* @param checkedIds 已选中的区域ID: 用于编辑
* @param
*/
render: function (alreadyIds, checkedIds) {
alreadyIds = alreadyIds || [];
alreadyIds.length > 0 && this.setAlready(alreadyIds);
checkedIds = checkedIds || [];
checkedIds.length > 0 && this.setChecked(checkedIds);
},
/**
* 初始化地域界面
*/
initInterface: function () {
var _this = this;
$(_this.container).append(
$('<div/>', {
class: 'place-div'
}).append(
$('<div/>', {}).append(
$('<div/>', {
class: 'checkbtn'
})
.append(
$('<label/>', {})
// 全选框
.append(
$('<input/>', {
type: 'checkbox',
change: function () {
var checked = $(this).is(':checked'),
$allCheckbox = $('.place').find('input[type=checkbox]');
$('.ratio').html('');
$allCheckbox.prop('checked', checked);
}
})
)
.append(' 全国')
)
.append(
$('<a/>', {
class: 'clearCheck',
text: '清空',
click: function () {
_this.destroy();
}
})
)
).append(
// 省份
$('<div/>', {
class: 'place clearfloat'
}).append(function () {
return _this.getSmallPlace();
}())
)
)
);
},
/**
* 遍历省份
* @returns {jQuery}
* @constructor
*/
getSmallPlace: function () {
var _this = this;
return $('<div/>', {
class: 'smallplace clearfloat'
}).append(
$.map(_this.datas, function (item) {
return $('<div/>', {
class: 'place-tooltips'
})
.append(
$('<label/>', {})
.append(
$('<input/>', {
id: item.id,
type: 'checkbox',
class: 'province',
change: function () {
var $this = $(this)
, small = $this.parent().next('.citys').find('input')
, $placeTooltips = $this.parents('.place-tooltips');
if ($this.prop('checked')) {
small.prop('checked', true);
$placeTooltips.find('.ratio').html('(' + small.length + '/' + small.length + ')');
} else {
small.prop('checked', false);
$placeTooltips.find('.ratio').html('');
}
}
})
)
.append(
// 省份名称
$('<span/>', {
class: 'province_name',
text: item.name
})
)
.append(function () {
// 城市数量
if (item.city) {
return $('<span/>', {
class: 'ratio'
})
}
})
).append(function () {
// 城市列表
if (item.city) {
return $('<div/>', {
class: 'citys'
}).append(
$('<i/>', {
class: 'jt'
}).append($('<i/>', {}))
).append(
_this.getSmallCitys(item.city)
)
}
})
})
)
},
/**
* 遍历城市
* @param datas
* @returns {jQuery}
* @constructor
*/
getSmallCitys: function (datas) {
return $('<div/>', {
class: 'row-div clearfloat'
}).append(
$.map(datas, function (item) {
return $('<p/>', {}).append(
$('<label/>', {}).append(
$('<input/>', {
id: item.id,
type: 'checkbox',
name: 'city[]',
class: 'city',
change: function () {
var $citys = $(this).parents('.citys')
, $placeTooltips = $(this).parents('.place-tooltips')
, tf = $citys.find('input:checked').length
, $province = $placeTooltips.find('.province')
, $ratio = $placeTooltips.find('.ratio');
if (tf > 0) {
$province.prop('checked', true);
$ratio.html('(' + tf + '/' + $citys.find('input').length + ')');
} else if (tf === 0) {
$province.prop('checked', false);
$ratio.html('');
}
}
})
).append(
$('<span/>', {
text: item.name
})
)
)
})
)
},
/**
* 获取已选中的省市id
* @returns {array}
* @constructor
*/
getCheckedIds: function () {
var checkedIds = [];
$('input[type=checkbox][name="city[]"]:checked').each(function (index, item) {
checkedIds.push(item.id);
});
return checkedIds;
},
/**
* 获取已选中的省市id (树状)
* @returns {Array}
*/
getCheckedTree: function () {
var _this = this;
// 遍历省份
var data = [];
$('input.province:checked').each(function (index, province) {
var $this = $(this)
, $citys = $this.parent().next()
, $cityInputChecked = $citys.find('input.city:checked')
, cityData = []
, cityTotal = Object.keys(_this.datas[province.id].city).length;
// 遍历城市
if (cityTotal !== $cityInputChecked.length) {
$cityInputChecked.each(function (index, item) {
cityData.push({id: item.id, name: $(this).next().text()});
});
}
data.push({
id: province.id,
name: $this.next().text(),
city: cityData
});
});
return data;
},
/**
* 获取已选中地区内容
* @returns {{content: string, checkedIds: *|Array}}
*/
getCheckedContent: function () {
// 获取已选中的省市id
var dataTree = this.getCheckedTree()
, checkedIds = this.getCheckedIds()
, content = '';
if (checkedIds.length === 373) {
content = '全国';
} else {
var str = '';
dataTree.forEach(function (item) {
str += item.name;
if (item.city.length > 0) {
var cityStr = '';
item.city.forEach(function (city) {
cityStr += city.name + '、';
});
str += ' (<span class="am-link-muted">'
+ cityStr.substring(0, cityStr.length - 1) + '</span>)';
}
str += '、';
});
content = str.substring(0, str.length - 1);
}
return {
content: content,
ids: checkedIds
};
},
/**
* 批量选中
* @param checkedIds 已选中的区域ID: 用于编辑
* @constructor
*/
setChecked: function (checkedIds) {
var $place = $('.place-div');
$.each(checkedIds, function (i, id) {
$place.find('#' + id).trigger('click');
});
},
/**
* 批量删除已存在的区域
* @param alreadyIds 已存在的区域ID: 用于新增
* @constructor
*/
setAlready: function (alreadyIds) {
var $place = $('.place-div');
$.each(alreadyIds, function (i, id) {
var $p = $place.find('#' + id).parent().parent()
, $siblings = $p.siblings();
$siblings.length > 0 ? $p.remove() : $p.closest('.place-tooltips').remove();
});
},
/**
* 清空
*/
destroy: function () {
var $place = $('.place-div');
$place.find('input[type=checkbox]').prop('checked', false);
$place.find('.ratio').html('');
}
};
window.RegionalChoice = RegionalChoice;
})(window);