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.
41 lines
535 B
41 lines
535 B
4 days ago
|
<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>
|