| 12345678910111213141516171819202122232425 |
- <template>
- <view class="module-container">
- <uv-empty mode="data" text="暂无数据"></uv-empty>
- </view>
- </template>
- <script setup lang="ts">
- const props = defineProps<{
- projectId: string;
- projectType: string;
- }>();
- </script>
- <style lang="scss" scoped>
- .module-container {
- padding: 30rpx;
- background-color: #fff;
- border-radius: 16rpx;
- min-height: 400rpx;
- box-shadow: 0 4rpx 16rpx rgba(0,0,0,0.03);
- display: flex;
- align-items: center;
- justify-content: center;
- }
- </style>
|