1 $.post('/manage.aa', function (response) { 2 agentList = response.data; 3 }, 'json'); 4 var categoryId;
5 $.get("/flow/flowDfne/queryFloRR.DD", {}, function (data) { 6 showCategory(data.data, 0); 7 if (categoryId != null && categoryId != undefined) { 8 $(".category").find("option[value=" + categoryId + "]").prop("selected", true); 9 } 10 form.render('select'); 11 }, "json");
//渲染下拉框
function showCategory(data, count) {
}
});
form.render('select');
}