时空网前端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

27 lines
481 B

<template>
<!-- 暂无内容-->
<view class="padding-xl margin-top-xl">
<view class="flex justify-center">
<image src="@/static/images/mescroll-empty.png" mode="widthFix" class="no-content-img"></image>
</view>
<text class="block text-center margin-top">暂无数据</text>
</view>
</template>
<script>
export default {
data() {
return {
}
},
}
</script>
<style lang="scss" scoped>
.no-content-img{
width: 300rpx;
height: 300rpx;
}
</style>