Ai_GirlFriend/xuniYou/components/not-have.vue
2026-01-31 19:15:41 +08:00

46 lines
680 B
Vue

<template>
<view v-if="status" class="noData">
<image src="/static/images/invoce_noData.png" class="noData_img" mode="widthFix"/>
<view class="noData_title">-暂无数据-</view>
</view>
</template>
<script>
export default {
data() {
return {
status: false
}
},
mounted() {
this.statusSetTime()
},
methods: {
statusSetTime(){
setTimeout(()=>{
this.status = true
},300)
}
}
}
</script>
<style>
.noData {
position: relative;
padding: 30rpx;
}
.noData_img {
height: 115rpx;
width: 350rpx;
display: block;
margin: 0 auto;
}
.noData_title {
font-size: 32rpx;
color: #0A0B0E;
text-align: center;
}
</style>