|
|
@@ -853,8 +853,14 @@ var SuperSearch = {
|
|
|
}
|
|
|
}
|
|
|
SuperSearch.reqParam["pageNum"] = parseInt(pgNum);
|
|
|
- var isMaxHeight = $(".app-layout-content-b").height() - $("#v-search-group .van-tabs.van-tabs--line").height()
|
|
|
+ var isMaxHeight = $(".app-layout-content-b").height() - $(".selected-export-box").height()
|
|
|
$("#supersearchPage .app-layout-content-b #wrapper").css({height: isMaxHeight, 'overflow-y': 'auto'})
|
|
|
+ // 安卓获取高度异常临时处理方式
|
|
|
+ setTimeout(function () {
|
|
|
+ var isMaxHeight = $(".app-layout-content-b").height() - $(".selected-export-box").height()
|
|
|
+ $("#supersearchPage .app-layout-content-b #wrapper").css({height: isMaxHeight, 'overflow-y': 'auto'})
|
|
|
+ }, 350)
|
|
|
+
|
|
|
SuperSearch.dropload = $('#supersearchPage #wrapper').dropload({
|
|
|
scrollArea: $("#supersearchPage .app-layout-content-b #wrapper"),
|
|
|
loadDownFn: function(me){
|