空状态需要处理,需要添加分享页面

This commit is contained in:
cbb
2025-12-26 17:42:07 +08:00
parent bb02cb22c0
commit dfc5888fa9
64 changed files with 11036 additions and 109 deletions

View File

@@ -0,0 +1,18 @@
<script setup>
const props = defineProps({
/** 距离顶部高度 */
top: {
type: Number,
default: 32
}
})
</script>
<template>
<uni-load-more
:style="{ 'margin-top': `${props.top}rpx` }"
status="loading"
></uni-load-more>
</template>
<style lang="scss" scoped></style>