feat(ccdiProject): 添加结果总览占位组件

This commit is contained in:
wkc
2026-03-04 10:31:59 +08:00
parent 1feb295a93
commit bd2d7b80dc

View File

@@ -0,0 +1,51 @@
<template>
<div class="preliminary-check-container">
<div class="placeholder-content">
<i class="el-icon-data-analysis"></i>
<p>结果总览功能开发中...</p>
</div>
</div>
</template>
<script>
export default {
name: "PreliminaryCheck",
props: {
projectId: {
type: [String, Number],
default: null,
},
projectInfo: {
type: Object,
default: () => ({
projectName: "",
updateTime: "",
projectStatus: "0",
}),
},
},
};
</script>
<style lang="scss" scoped>
.preliminary-check-container {
padding: 40px 20px;
background: #fff;
min-height: 400px;
}
.placeholder-content {
text-align: center;
color: #909399;
i {
font-size: 48px;
margin-bottom: 16px;
}
p {
font-size: 14px;
margin: 0;
}
}
</style>