no message

This commit is contained in:
2025-09-25 17:09:47 +08:00
parent 1f76ab9fa8
commit 997237ca9d
2 changed files with 6 additions and 3 deletions
+1 -1
View File
@@ -42,7 +42,7 @@
<!-- 底部是否偏移TabBar的高度(默认仅在H5端的tab页生效) --> <!-- 底部是否偏移TabBar的高度(默认仅在H5端的tab页生效) -->
<!-- #ifdef H5 --> <!-- #ifdef H5 -->
<view v-if="bottombar && windowBottom>0" class="mescroll-bottombar" :style="{height: windowBottom+'px'}"></view> <view v-if="bottombar && windowBottom>0" class="mescroll-bottombar" :style="{height: '0px'}"></view>
<!-- #endif --> <!-- #endif -->
<!-- 适配iPhoneX --> <!-- 适配iPhoneX -->
+5 -2
View File
@@ -99,13 +99,15 @@ export default {
let pageSize = page.size; let pageSize = page.size;
const params = { let params = {
type: 2, type: 2,
page: page.num, page: page.num,
pageSize: page.size, pageSize: page.size,
isPar: true, isPar: true,
}; };
if(this.curTab != 0){
params['categoryId'] = this.tabList[this.curTab].id;
}
searchList(params).then(res => { searchList(params).then(res => {
let curPageLen = res.data.length; let curPageLen = res.data.length;
@@ -176,6 +178,7 @@ export default {
</script> </script>
<style lang="scss" scoped> <style lang="scss" scoped>
.content-two { .content-two {
height: calc(100vh ); height: calc(100vh );