系统通知

This commit is contained in:
A1300399510
2023-07-14 17:21:53 +08:00
parent fbfae2d4fc
commit 89d8462f7b
21 changed files with 492 additions and 104 deletions

View File

@@ -0,0 +1,32 @@
<template>
<div class="empty-box flexflex">
<img class="empty-icon" src="@/assets/img/publicImage/empty-duck.png">
<text class="empty-text">{{ hintText || '暂无内容' }}</text>
</div>
</template>
<script setup>
const props = defineProps({
hintText: String,
})
</script>
<style lang="less" scoped>
.empty-box {
flex-direction: column;
align-items: center;
.empty-icon {
width: 102px;
height: 120px;
margin-bottom: 16px;
}
.empty-text {
color: #7f7f7f;
line-height: 24px;
font-size: 14px;
}
}
</style>