This commit is contained in:
2025-12-25 10:35:13 +08:00
parent c7f42418ba
commit ff71c50b9c
3 changed files with 10 additions and 5 deletions

View File

@@ -6,6 +6,7 @@
>
<!-- 顶部头部区域 -->
<view
v-if="showHeader || defaultShow"
class="container-header"
:style="border ? { borderBottom: `2rpx solid ${borderColor}` } : { borderBottom: 'none' }"
>
@@ -87,11 +88,15 @@ defineProps({
type: Boolean,
default: true,
},
showHeader: {
type: Boolean,
default: false,
},
});
// const defaultShow = computed(()=>{
// return isMiniProgram.value
// })
const defaultShow = computed(()=>{
return isMiniProgram.value
})
const handleScrollToLower = () => {
emit('onScrollBottom');