27 lines
541 B
Vue
27 lines
541 B
Vue
<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>
|