|
@@ -820,12 +820,16 @@ window.listScroll = function() {
|
|
|
me.resetload();
|
|
|
}
|
|
|
|
|
|
- function hasNoData() {
|
|
|
- $(".listcontent").hide();
|
|
|
- $("#loading").hide();
|
|
|
- $(".color_top").hide();
|
|
|
- $(".findnull_").css("display", "block").siblings('.empty').hide()
|
|
|
- }
|
|
|
+function hasNoData() {
|
|
|
+ var nokeyNoDataShow = $('.findnull-no-key').is(':visible')
|
|
|
+ $(".listcontent").hide()
|
|
|
+ $("#loading").hide()
|
|
|
+ $(".color_top").hide()
|
|
|
+ // 如果no-key-no-data 不显示,才会显示no-data
|
|
|
+ if (!nokeyNoDataShow) {
|
|
|
+ $(".findnull_").css("display", "block").siblings('.empty').hide()
|
|
|
+ }
|
|
|
+}
|
|
|
|
|
|
function structureHtml(object, showAd) {
|
|
|
$('.findnull').hide()
|