2.2提交

This commit is contained in:
zoujiandong
2026-02-02 17:44:10 +08:00
parent d06ee397cf
commit a7b2a673a9
54 changed files with 3615 additions and 1317 deletions
+7 -1
View File
@@ -1,7 +1,7 @@
<template>
<view class="emptybox">
<up-image :src="emptyImg" width="176rpx" height="204rpx" ></up-image>
<text class="empty-text">暂无数据</text>
<text class="empty-text">{{ emptyDesc }}</text>
</view>
</template>
@@ -9,6 +9,12 @@
import { ref } from 'vue';
import { onShow } from "@dcloudio/uni-app";
import emptyImg from "@/static/icon_empty.png"
const props = defineProps({
emptyDesc: {
type: String,
default: '暂无数据'
}
})
</script>
<style scoped lang="scss">