Beispiel #1
0
    	$.when(ajaxing).done(function(datas){
    		util.hideLoading() ;
    		if (datas === null) {
				window.location.reload();
				return;
			}
			if(datas.length === 0) {
				$('#abrcontent').empty();
        		$.showTuiMessageDialog('没有相应搜索条件下的结果!');
        		return;
            }
			that._resultData(datas);
    	}).fail(function(err){
Beispiel #2
0
 	}).fail(function(err){
 		util.hideLoading() ;
 		$.showTuiMessageDialog('查询出错!');
 	}) ;