8.26 17:41
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
<template>
|
||||
<view class="emptybox">
|
||||
<up-image :src="emptyImg" width="176rpx" height="204rpx" ></up-image>
|
||||
<text class="empty-text">暂无数据</text>
|
||||
</view>
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
import { ref } from 'vue';
|
||||
import { onShow } from "@dcloudio/uni-app";
|
||||
import emptyImg from "@/static/icon_empty.png"
|
||||
</script>
|
||||
|
||||
<style scoped lang="scss">
|
||||
.emptybox{
|
||||
height:800rpx;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
flex-direction: column;
|
||||
.empty-text{
|
||||
font-size: 30rpx;
|
||||
color:#999;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
Reference in New Issue
Block a user