This commit is contained in:
2026-04-30 16:06:57 +08:00
parent a4afe70d46
commit 94bcbc8d8f
10 changed files with 249 additions and 443 deletions

View File

@@ -0,0 +1,12 @@
<template>
<view class="flex flex-col items-center justify-center py-16">
<image src="/static/images/empty.svg" mode="aspectFit" class="w-48 h-48 mb-4" />
<text class="text-gray-400 text-base">{{ text }}</text>
</view>
</template>
<script setup>
defineProps({
text: { type: String, default: '暂无数据' }
})
</script>