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.
39 lines
547 B
39 lines
547 B
<template> |
|
<view class="none"> |
|
<image class="pic" src="https://eduvessel.com/images/occupationlab/none.svg" 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: 100rpx 0; |
|
text-align: center; |
|
.pic { |
|
width: 200rpx; |
|
} |
|
.text { |
|
font-size: 28rpx; |
|
color: #6d6d6d; |
|
} |
|
} |
|
</style>
|
|
|