2025-08-12 09:13:50 +08:00

51 lines
836 B
Vue

<template>
<div class="main">
<image class="typeImg" src="https://eshangtech.com/ShopICO/ahyd-BID/commercial/noData.svg"></image>
<p class="text" >抱歉,暂无数据</p>
</div>
</template>
<script>
export default {
name: "noData",
data(){
return {
type:''
}
},
onLoad(query){
},
onUnload() {
},
methods:{
}
}
</script>
<style scoped lang="scss">
.main{
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
margin-top: 12px;
padding: 16px 0;
.typeImg{
width: 80px;
height: 80px;
margin-bottom: 16px;
}
.text{
font-size: 14px;
font-family: PingFangSC-Regular, PingFang SC;
font-weight: 400;
color: #6C737A;
line-height: 20rpx;
}
}
</style>