Merge branch 'master' of http://docs.nculture.org:30000/nculture/iams.nlib
This commit is contained in:
commit
d9e979f487
@ -146,11 +146,6 @@
|
||||
else {
|
||||
$("#itemsCount").text(jsonObj.itemsCount);
|
||||
}
|
||||
if(!jsonObj.data || jsonObj.data.length <= 0 ) {
|
||||
$("div.list-data li.no-result").show();
|
||||
} else {
|
||||
$("div.list-data li.no-result").hide();
|
||||
|
||||
$( "div.list-data").empty();
|
||||
var t_title = "";
|
||||
t_title += "<div class=\"list t-tit-line\">"
|
||||
@ -165,6 +160,11 @@
|
||||
t_title += "</li>"
|
||||
|
||||
$( "div.list-data").append(t_title);
|
||||
|
||||
if(!jsonObj.data || jsonObj.data.length <= 0 ) {
|
||||
$("div.list-data li.no-result").show();
|
||||
} else {
|
||||
$("div.list-data li.no-result").hide();
|
||||
// 출력
|
||||
$.each(jsonObj.data,function(key,obj) {
|
||||
var t_data = "";
|
||||
|
||||
Loading…
Reference in New Issue
Block a user