12345678910111213141516171819202122 |
- <template>
- <view class="empty">
- <image class="img" src="@/static/procurement/pro-empty.png" mode="aspectFill"></image>
- </view>
- </template>
- <script>
- </script>
- <style scoped lang="scss">
- .empty {
- width: 100vw;
- height: 100vh;
- display: flex;
- justify-content: center;
- }
- .img {
- width: 386rpx;
- height: 286rpx;
- margin-top: 371rpx;
- }
- </style>
|