2026-03-04 10:32:48 +08:00
|
|
|
|
<template>
|
|
|
|
|
|
<div class="special-check-container">
|
2026-03-24 20:42:56 +08:00
|
|
|
|
<div v-if="pageState === 'loading'" class="special-check-state">
|
|
|
|
|
|
<div class="state-card">
|
|
|
|
|
|
<el-skeleton animated :rows="6" />
|
|
|
|
|
|
</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
|
|
|
|
|
|
:rows="currentData.rows"
|
|
|
|
|
|
:loading="false"
|
|
|
|
|
|
:project-id="projectId"
|
|
|
|
|
|
:title="sectionTitle"
|
|
|
|
|
|
:subtitle="sectionSubtitle"
|
|
|
|
|
|
/>
|
2026-03-24 21:34:38 +08:00
|
|
|
|
|
|
|
|
|
|
<section class="graph-placeholder-card">
|
|
|
|
|
|
<div class="graph-placeholder-header">
|
|
|
|
|
|
<div>
|
|
|
|
|
|
<div class="graph-placeholder-title">图谱外链展示</div>
|
|
|
|
|
|
<div class="graph-placeholder-subtitle">用于后续接入外链图谱页面</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<el-tag size="mini" type="info" effect="plain">占位中</el-tag>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<div class="graph-placeholder-body">
|
|
|
|
|
|
<div class="graph-placeholder-text">
|
|
|
|
|
|
当前卡片用于预留专项核查图谱入口,后续接入外链地址后可在此直接跳转展示。
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<el-button type="primary" size="small" disabled>待接入</el-button>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</section>
|
2026-03-04 10:32:48 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
|
|
<script>
|
2026-03-24 20:42:56 +08:00
|
|
|
|
import { createSpecialCheckLoadedData, specialCheckStateData } from "./specialCheck.mock";
|
|
|
|
|
|
import { getFamilyAssetLiabilityList } from "@/api/ccdi/projectSpecialCheck";
|
|
|
|
|
|
import FamilyAssetLiabilitySection from "./FamilyAssetLiabilitySection";
|
|
|
|
|
|
|
2026-03-04 10:32:48 +08:00
|
|
|
|
export default {
|
|
|
|
|
|
name: "SpecialCheck",
|
2026-03-24 20:42:56 +08:00
|
|
|
|
components: {
|
|
|
|
|
|
FamilyAssetLiabilitySection,
|
|
|
|
|
|
},
|
2026-03-04 10:32:48 +08:00
|
|
|
|
props: {
|
|
|
|
|
|
projectId: {
|
|
|
|
|
|
type: [String, Number],
|
|
|
|
|
|
default: null,
|
|
|
|
|
|
},
|
|
|
|
|
|
projectInfo: {
|
|
|
|
|
|
type: Object,
|
|
|
|
|
|
default: () => ({
|
|
|
|
|
|
projectName: "",
|
|
|
|
|
|
updateTime: "",
|
|
|
|
|
|
projectStatus: "0",
|
|
|
|
|
|
}),
|
|
|
|
|
|
},
|
|
|
|
|
|
},
|
2026-03-24 20:42:56 +08:00
|
|
|
|
data() {
|
|
|
|
|
|
return {
|
|
|
|
|
|
pageState: "loading",
|
|
|
|
|
|
realData: specialCheckStateData.loading,
|
|
|
|
|
|
sectionTitle: "员工家庭资产负债专项核查",
|
|
|
|
|
|
sectionSubtitle: "按项目员工范围聚合本人及配偶的收入、资产与负债情况",
|
|
|
|
|
|
};
|
|
|
|
|
|
},
|
|
|
|
|
|
computed: {
|
|
|
|
|
|
currentData() {
|
|
|
|
|
|
if (this.pageState === "loaded") {
|
|
|
|
|
|
return this.realData;
|
|
|
|
|
|
}
|
|
|
|
|
|
return specialCheckStateData[this.pageState] || this.realData;
|
|
|
|
|
|
},
|
|
|
|
|
|
},
|
|
|
|
|
|
watch: {
|
|
|
|
|
|
projectId(newVal) {
|
|
|
|
|
|
if (newVal) {
|
|
|
|
|
|
this.loadSpecialCheckData();
|
|
|
|
|
|
return;
|
|
|
|
|
|
}
|
|
|
|
|
|
this.realData = specialCheckStateData.empty;
|
|
|
|
|
|
this.pageState = "empty";
|
|
|
|
|
|
},
|
|
|
|
|
|
},
|
|
|
|
|
|
created() {
|
|
|
|
|
|
if (this.projectId) {
|
|
|
|
|
|
this.loadSpecialCheckData();
|
|
|
|
|
|
return;
|
|
|
|
|
|
}
|
|
|
|
|
|
this.realData = specialCheckStateData.empty;
|
|
|
|
|
|
this.pageState = "empty";
|
|
|
|
|
|
},
|
|
|
|
|
|
methods: {
|
|
|
|
|
|
async loadSpecialCheckData() {
|
|
|
|
|
|
if (!this.projectId) {
|
|
|
|
|
|
this.realData = specialCheckStateData.empty;
|
|
|
|
|
|
this.pageState = "empty";
|
|
|
|
|
|
return;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
this.pageState = "loading";
|
|
|
|
|
|
try {
|
|
|
|
|
|
const response = await getFamilyAssetLiabilityList(this.projectId);
|
|
|
|
|
|
const listData = (response && response.data) || {};
|
|
|
|
|
|
this.realData = createSpecialCheckLoadedData({
|
|
|
|
|
|
projectId: this.projectId,
|
|
|
|
|
|
listData,
|
|
|
|
|
|
});
|
|
|
|
|
|
this.pageState = this.realData.rows.length ? "loaded" : "empty";
|
|
|
|
|
|
} catch (error) {
|
|
|
|
|
|
this.realData = specialCheckStateData.empty;
|
|
|
|
|
|
this.pageState = "empty";
|
|
|
|
|
|
console.error("加载专项核查数据失败", error);
|
|
|
|
|
|
}
|
|
|
|
|
|
},
|
|
|
|
|
|
},
|
2026-03-04 10:32:48 +08:00
|
|
|
|
};
|
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
|
|
.special-check-container {
|
|
|
|
|
|
min-height: 400px;
|
2026-03-24 20:42:56 +08:00
|
|
|
|
padding: 0 0 24px;
|
2026-03-04 10:32:48 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2026-03-24 20:42:56 +08:00
|
|
|
|
.special-check-state {
|
|
|
|
|
|
min-height: 400px;
|
|
|
|
|
|
}
|
2026-03-04 10:32:48 +08:00
|
|
|
|
|
2026-03-24 20:42:56 +08:00
|
|
|
|
.state-card {
|
|
|
|
|
|
padding: 32px 24px;
|
|
|
|
|
|
border-radius: 0;
|
|
|
|
|
|
background: #fff;
|
|
|
|
|
|
box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
|
|
|
|
|
|
}
|
2026-03-04 10:32:48 +08:00
|
|
|
|
|
2026-03-24 20:42:56 +08:00
|
|
|
|
.special-check-page {
|
|
|
|
|
|
min-height: 400px;
|
2026-03-04 10:32:48 +08:00
|
|
|
|
}
|
2026-03-24 21:34:38 +08:00
|
|
|
|
|
|
|
|
|
|
.graph-placeholder-card {
|
|
|
|
|
|
margin-top: 16px;
|
|
|
|
|
|
min-height: 500px;
|
|
|
|
|
|
padding: 20px;
|
|
|
|
|
|
background: #fff;
|
|
|
|
|
|
box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.graph-placeholder-header {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: flex-start;
|
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
|
gap: 16px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.graph-placeholder-title {
|
|
|
|
|
|
font-size: 16px;
|
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
|
color: #1f2937;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.graph-placeholder-subtitle {
|
|
|
|
|
|
margin-top: 4px;
|
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
|
color: #94a3b8;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.graph-placeholder-body {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
|
gap: 16px;
|
|
|
|
|
|
margin-top: 18px;
|
|
|
|
|
|
padding: 16px 18px;
|
|
|
|
|
|
border: 1px dashed #dbeafe;
|
|
|
|
|
|
background: #f8fbff;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.graph-placeholder-text {
|
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
|
line-height: 22px;
|
|
|
|
|
|
color: #475569;
|
|
|
|
|
|
}
|
2026-03-04 10:32:48 +08:00
|
|
|
|
</style>
|