tmp.js
2.98 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
function selectCity(id, type, changeUrl) {
var renderData = function(elId, data, selectedId) {
var comp = $('#' + elId);
comp.prop('disabled', true);
comp.children().remove();
$.each(data, function(i, item) {
var content = '<option value="';
content += item.dataId;
content += '"';
if (item.dataId == selectedId) {
content += ' selected="selected"';
}
content += '>';
content += item.label;
content += '</option>';
comp.append(content);
});
comp.prop('disabled', false);
};
var modal = new window.bs.modal({
id : 'cityModal',
title : '请选择城市',
closeAction : 'destroy',
body : [{
xtype : 'select',
id : 'province',
label : '省:',
events : {
change : function() {
var parentId = this.value;
$.get('/dataAuth/listJson.do', {
type : 'city',
parentId : parentId
}, function(data) {
if (data.success) {
if (data.data.length > 0) {
renderData('city', data.data, id);
} else {
var city = $('#city');
city.children().remove();
var val = $('#province').val();
var text = $('#province>option:selected').text();
city.append('<option value="' + val + '">' + text + '</option>');
}
}
}, 'json');
}
}
}, {
xtype : 'select',
id : 'city',
label : '市:',
disabled : true,
options : [{
text : '请选择',
value : ''
}]
}],
footer : [{
xtype : 'button',
value : '确定',
cls : 'btn btn-primary',
events : {
click : function() {
var val = $('#city>option:selected').val();
window.location.href = changeUrl + '?type=' + type + '¤t=' + val;
}
}
}]
});
modal.show();
$.get('/dataAuth/findByDataIdJson.do', {
type : 'city',
dataId : id
}, function(data) {
if (data.success) {
var da = data.data;
if (da) {
var selectedPId = null;
if (da.parentDataId == 0) {
$.get('/dataAuth/listJson.do', {
type : 'city',
parentId : 0
}, function(res) {
if (res.success) {
renderData('province', res.data, da.dataId);
renderData('city', [da], da.dataId);
}
}, 'json');
} else {
$.get('/dataAuth/listJson.do', {
type : 'city',
parentId : 0
}, function(res) {
if (res.success) {
renderData('province', res.data, da.parentDataId);
$.get('/dataAuth/listJson.do', {
type : 'city',
parentId : da.parentDataId
}, function(res) {
if (res.success) {
renderData('city', res.data, da.dataId);
}
}, 'json');
}
}, 'json');
}
}
}
}, 'json');
}