ProjectMidterm.vue 500 B

12345678910111213141516171819202122232425
  1. <template>
  2. <view class="module-container">
  3. <uv-empty mode="data" text="暂无数据"></uv-empty>
  4. </view>
  5. </template>
  6. <script setup lang="ts">
  7. const props = defineProps<{
  8. projectId: string;
  9. projectType: string;
  10. }>();
  11. </script>
  12. <style lang="scss" scoped>
  13. .module-container {
  14. padding: 30rpx;
  15. background-color: #fff;
  16. border-radius: 16rpx;
  17. min-height: 400rpx;
  18. box-shadow: 0 4rpx 16rpx rgba(0,0,0,0.03);
  19. display: flex;
  20. align-items: center;
  21. justify-content: center;
  22. }
  23. </style>