职站学生端小程序版
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
574 B

4 days ago
<template>
<view class="none">
1 hour ago
<image class="pic" src="https://eduvessel.com/images/occupationlab/none.svg" mode="widthFix"></image>
4 days ago
<view class="text">{{ text }}</view>
</view>
</template>
<script>
export default {
props: {
text: {
type: String,
default: '暂无数据'
},
},
data() {
return {
}
},
methods: {
}
}
</script>
<style scoped lang="scss">
.none {
1 hour ago
padding: 100rpx 0;
4 days ago
text-align: center;
1 hour ago
.pic {
width: 400rpx;
// margin-bottom: 52rpx;
4 days ago
}
.text {
font-size: 28rpx;
1 hour ago
color: #6d6d6d;
4 days ago
}
}
</style>