幼教产品B2B生态平台小程序端
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.
 
 
 
 

40 lines
535 B

<template>
<view class="none">
<image src="../../static/image/none.png" mode="widthFix"></image>
<view class="text">{{ text }}</view>
</view>
</template>
<script>
export default {
props: {
text: {
type: String,
default: '暂无数据'
},
},
data() {
return {
}
},
methods: {
}
}
</script>
<style scoped lang="scss">
.none {
padding-top: 100rpx;
text-align: center;
image {
width: 426rpx;
margin-bottom: 52rpx;
}
.text {
font-size: 28rpx;
color: #333;
}
}
</style>