添加空状态

This commit is contained in:
cbb
2025-12-26 17:52:59 +08:00
parent dfc5888fa9
commit 57fc3b7314
2 changed files with 41 additions and 5 deletions

View File

@@ -2,20 +2,46 @@
const props = defineProps({
name: {
type: String,
default: '空状态'
default: '暂无数据'
},
top: {
type: Number,
default: 10
}
})
</script>
<template>
<view class="cb-empty">
<view :style="{'margin-top': `${top}vh` }" class="cb-empty">
<image
src="/static/images/public/empty-icon.png"
mode="scaleToFill"
class="left-img"
class="empty-icon"
></image>
<text class="bottom-name">{{ props.name }}</text>
</view>
</template>
<style lang="scss" scoped></style>
<style lang="scss" scoped>
.cb-empty {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
.empty-icon {
width: 285rpx;
height: 285rpx;
margin-bottom: 64rpx;
}
.bottom-name {
font-family: PingFang SC, PingFang SC;
font-weight: 500;
font-size: 32rpx;
color: #999999;
text-align: center;
font-style: normal;
text-transform: none;
}
}
</style>