空状态需要处理,需要添加分享页面
This commit is contained in:
21
components/cb-empty/cb-empty.vue
Normal file
21
components/cb-empty/cb-empty.vue
Normal 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>
|
||||
Reference in New Issue
Block a user