1234567891011121314151617181920212223242526272829303132333435363738 |
- <template>
- <view class="none-box">
- <img src="/static/serverImg/list/null.png" alt="" style="width: 267rpx; height: 267rpx;">
- <view class="none-text">{{value}}</view>
- </view>
- </template>
- <script setup>
- const props = defineProps({
- value: {
- type: String,
- default: '数据为空'
- }
- })
- </script>
- <style scoped lang="scss">
- .none-box{
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- margin-top: 103rpx;
- .none-text {
- font-family: Inter;
- font-size: 27.63rpx;
- font-weight: bold;
- line-height: 33.63rpx;
- text-align: center;
- display: flex;
- align-items: center;
- letter-spacing: normal;
- color: #687383;
- margin-top: 14rpx;
- }
- }
- </style>
|