调整专项核查图谱展示

This commit is contained in:
wkc
2026-06-01 17:37:59 +08:00
parent de6e6bd628
commit 850f97ea22

View File

@@ -6,14 +6,9 @@
</div>
</div>
<div v-else-if="pageState === 'empty'" class="special-check-state">
<div class="state-card">
<el-empty description="暂无员工家庭资产负债核查数据" />
</div>
</div>
<div v-else class="special-check-page">
<family-asset-liability-section
v-if="pageState === 'loaded'"
:rows="currentData.rows"
:loading="false"
:project-id="projectId"
@@ -22,7 +17,13 @@
@evidence-confirm="$emit('evidence-confirm', $event)"
/>
<fund-graph-section ref="fundGraphSection" />
<div v-else class="special-check-state">
<div class="state-card">
<el-empty description="暂无员工家庭资产负债核查数据" />
</div>
</div>
<graph-atlas-section />
</div>
<div v-if="projectId" class="special-check-extended-wrapper">
@@ -36,14 +37,14 @@ import { createSpecialCheckLoadedData, specialCheckStateData } from "./specialCh
import { getFamilyAssetLiabilityList } from "@/api/ccdi/projectSpecialCheck";
import ExtendedQuerySection from "./ExtendedQuerySection";
import FamilyAssetLiabilitySection from "./FamilyAssetLiabilitySection";
import FundGraphSection from "./graph/FundGraphSection";
import GraphAtlasSection from "./GraphAtlasSection";
export default {
name: "SpecialCheck",
components: {
ExtendedQuerySection,
FamilyAssetLiabilitySection,
FundGraphSection,
GraphAtlasSection,
},
props: {
projectId: {