|
@@ -987,12 +987,13 @@ window.listScroll = function() {
|
|
|
|
|
|
function hasNoData() {
|
|
|
var nokeyNoDataShow = $('.findnull-no-key').is(':visible')
|
|
|
+ var NoDataShow = $('.findnull-no-key').is(':hidden')
|
|
|
$(".listcontent").hide()
|
|
|
$("#loading").hide()
|
|
|
$(".color_top").hide()
|
|
|
// 如果no-key-no-data 不显示,才会显示no-data
|
|
|
console.log(nokeyNoDataShow, 'nokeyNoDataShow')
|
|
|
- if (!nokeyNoDataShow) {
|
|
|
+ if (!nokeyNoDataShow || !NoDataShow) {
|
|
|
$(".findnull_").css("display", "block").siblings('.empty').hide()
|
|
|
}
|
|
|
}
|