Commit 28cfb0fd authored by agping's avatar agping

1

parent 8d3f789a
......@@ -307,11 +307,14 @@ define (['doT', 'text!temp/opensquareList_template_tpl.html','ckfinder','ckfinde
url: '/index/getDistrictLable',
type: 'GET',
async: true,
data: {},
data: {
"type":0
},
dataType: 'json',
success: function (data) {
if (data.code == 200 && data.data != null) {
var str = '<option value="">部门标签</option>';
data.data.shift();
$.each(data.data, function(i,item) {
str += '<option value="'+item.id+'">'+item.name+'</option>';
});
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment