123456789101112131415161718192021222324252627282930313233343536373839 |
- <template>
- <view>
- <view class="nodata">
- <image class="n-img" src="../../static/noData.png"></image>
- <text class="n-text">暂无数据</text>
- </view>
- </view>
- </template>
- <script>
- export default {
- name:"noData",
- data() {
- return {
-
- };
- }
- }
- </script>
- <style lang="scss">
- .nodata{
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- width: 100%;
- height: 750rpx;
- .n-img{
- width: 300rpx;
- height: 300rpx;
- }
- .n-text{
- font-size: 28rpx;
- color: #666;
- margin-top: 20rpx;
- }
- }
- </style>
|