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

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,21 @@
<script setup>
const props = defineProps({
name: {
type: String,
default: '空状态'
}
})
</script>
<template>
<view class="cb-empty">
<image
src="/static/images/public/empty-icon.png"
mode="scaleToFill"
class="left-img"
></image>
<text class="bottom-name">{{ props.name }}</text>
</view>
</template>
<style lang="scss" scoped></style>