procurement-empty.vue 423 B

12345678910111213141516171819202122
  1. <template>
  2. <view class="empty">
  3. <image class="img" src="@/static/procurement/pro-empty.png" mode="aspectFill"></image>
  4. </view>
  5. </template>
  6. <script>
  7. </script>
  8. <style scoped lang="scss">
  9. .empty {
  10. width: 100vw;
  11. height: 100vh;
  12. display: flex;
  13. justify-content: center;
  14. }
  15. .img {
  16. width: 386rpx;
  17. height: 286rpx;
  18. margin-top: 371rpx;
  19. }
  20. </style>