首页点击图斑不显示详情问题修改

main
zhufu 2025-11-03 14:13:36 +08:00
parent 22a7a915e5
commit 4eb8186428
1 changed files with 6 additions and 0 deletions

View File

@ -176,6 +176,7 @@
import { getConfig } from '@/api/sys/layerManagement';
import { GetCaseInfoById } from '@/api/degraining/index';
import { getInspectionAuditCaseInfoById } from '@/api/inspectionaudit/index';
import { getInspectionAuditCaseInfoById as getFarmlandCaseInfoById } from '@/api/farmland/index';
import { getRedLineCaseInfoById } from '@/api/redlinesupervision/index';
import { getRepairCaseInfoById } from '@/api/shengtaixiufu/index';
import { getCaseInfoByIdtotal } from '@/api/keyproblem/keyissuesI/index';
@ -269,6 +270,11 @@ watchEffect(() => {
showInfoData.value = res;
showInfoOpen.value = true;
});
}else if(subject.value == '乱占耕地建房'){
getFarmlandCaseInfoById({ id: id }).then((res) => {
showInfoData.value = res;
showInfoOpen.value = true;
});
}
};