You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
50 lines
860 B
50 lines
860 B
<template> |
|
<view class="cs-empty" :style="{ marginTop: marginTop + 'rpx' }"> |
|
<image |
|
class="empty-image" |
|
src="/static/images/emty.png" |
|
mode="aspectFit" |
|
/> |
|
<text class="empty-text">{{ text }}</text> |
|
<slot></slot> |
|
</view> |
|
</template> |
|
|
|
<script> |
|
export default { |
|
name: 'cs-empty', |
|
props: { |
|
// 显示的文字 |
|
text: { |
|
type: String, |
|
default: '暂无数据' |
|
}, |
|
// 上边距 |
|
marginTop: { |
|
type: Number, |
|
default: 0 |
|
} |
|
} |
|
} |
|
</script> |
|
|
|
<style lang="scss" scoped> |
|
.cs-empty { |
|
display: flex; |
|
flex-direction: column; |
|
align-items: center; |
|
justify-content: center; |
|
background-color: #fff; |
|
height: 856rpx; |
|
border-radius: 24rpx; |
|
gap: 24rpx; |
|
.empty-image { |
|
width: 158rpx; |
|
height: 158rpx; |
|
} |
|
.empty-text { |
|
font-size: 32rpx; |
|
color: #99a1b7; |
|
} |
|
} |
|
</style>
|
|
|