|
var pop = this.comp("attListPop");
pop.show();
$.ajax({
"type" : "get",
"dataType" : "json",
"async" : false,
"url" : "http://192.168.0.200:8080/RSTS/app/getAttListInfo.action",
"data" : {
"usercode" : usercode,
"yearMonth" : selDate.val(),
"flag" : flag
},
"success" : function(res){
setTimeout(function(){
pop.hide();
if(res.success){
nowDate.val(res.nowDate);
selDate.val(res.selDate);
attListData.loadData(res.attList);
}else{
msgDialog.show({
"message" : "数据加载出错..."
});
}
},2000);
},
"error": function(){
pop.hide();
msgDialog.show({
"message" : "网络连接异常,请联系管理员!"
});
}
});
为什么遮罩层 在显示的时候 点击屏幕遮罩层会消失呢? |
|