getDicValueList($("#FistCategoryCode"),38); //工单来源
$("#FistCategoryCode").change(function(){
if ($("#FistCategoryCode").val()) {
$("#SecondCategoryCode").show()
getDicValueList($("#SecondCategoryCode"),$("#FistCategoryCode").val()); //工单来源
}else{
$("#SecondCategoryCode").hide()
$("#SecondCategoryCode").va('')
}
})
function getDicValueList(obj,id) {
obj.empty();
obj.append('');
$.getJSON(
huayi.config.callcenter_url + "KeyValue/GetDicValueList", {
token: $.cookie("token"),
pid: id,
},
function(data) {
if(data.state.toLowerCase() == "success") {
var content = data.data;
$(content).each(function(i, n) {
$("").appendTo(obj);
});
}
}
);
}