| 1234567891011121314151617181920212223 |
- <template>
- <view class="content">
- <img class="img" src="@/static/images/8.png" />
- <view class="info">暂无数据</view>
- </view>
- </template>
- <script setup></script>
- <style lang="scss" scoped>
- .content {
- padding: 150rpx 30rpx;
- text-align: center;
- .img {
- height: 508rpx;
- }
- .info {
- color: #999999;
- }
- }
- </style>
|