挂载专项核查拓展查询卡片

This commit is contained in:
wkc
2026-03-24 23:04:54 +08:00
parent 0b80c18838
commit 5ba70789d4
4 changed files with 113 additions and 0 deletions

View File

@@ -38,17 +38,23 @@
</div>
</section>
</div>
<div v-if="projectId" class="special-check-extended-wrapper">
<extended-query-section :project-id="projectId" />
</div>
</div>
</template>
<script>
import { createSpecialCheckLoadedData, specialCheckStateData } from "./specialCheck.mock";
import { getFamilyAssetLiabilityList } from "@/api/ccdi/projectSpecialCheck";
import ExtendedQuerySection from "./ExtendedQuerySection";
import FamilyAssetLiabilitySection from "./FamilyAssetLiabilitySection";
export default {
name: "SpecialCheck",
components: {
ExtendedQuerySection,
FamilyAssetLiabilitySection,
},
props: {
@@ -190,4 +196,8 @@ export default {
line-height: 22px;
color: #475569;
}
.special-check-extended-wrapper {
margin-top: 16px;
}
</style>