123456789101112131415161718192021222324252627282930313233343536 |
- <template>
- <view class="empty-box">
- <image class="empty-img" src="../../static/images/empty.png" mode="aspectFit"></image>
- <text class="empty-text">暂无数据</text>
- </view>
- </template>
- <script>
- export default {
- name:"empty",
- data() {
- return {
-
- };
- }
- }
- </script>
- <style scoped lang="scss">
- .empty-box{
- width: 100%;
- text-align: center;
- display: flex;
- flex-direction: column;
- .empty-img{
- max-width: 100%;
- width: 720rpx;
- height: 351rpx;
- }
- .empty-text{
- padding-top: 50rpx;
- width: 100%;
- font-size: 28rpx;
- }
- }
- </style>
|