海南旅游项目 前端仓库
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.
 
 
 
 

31 lines
488 B

<template>
<view class="padding-xl margin-top-xl">
<view class="flex justify-center">
<image src="@/static/images/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 {
}
},
onLoad(){
},
methods: {
}
}
</script>
<style lang="scss" scoped>
.no-content-img{
width: 440rpx;
height: 380rpx;
}
</style>