| 12345678910111213141516171819202122 |
- <template>
- <view class="container">
- <img class="img" src="@/static/images/noData.png" />
- 暂无数据
- </view>
- </template>
- <script></script>
- <style lang="scss" scoped>
- .container {
- display: flex;
- flex-direction: column;
- align-items: center;
- padding-bottom: 65rpx;
- .img {
- margin-top: 160rpx;
- width: 480rpx;
- }
- }
- </style>
|