This commit is contained in:
Teo
2025-08-14 01:58:00 +08:00
parent 606722f19e
commit 3158dc84f7
99 changed files with 620 additions and 554 deletions

View File

@ -206,21 +206,21 @@ const classOptions = {
//获取质量信息
const getQualityData = async () => {
const res = await getQualityList({ projectId: currentProject.value.id });
const res = await getQualityList({ projectId: currentProject.value?.id });
if (res.code !== 200) return;
qualityData.value = res.data;
};
//获取大屏项目新闻列表
const getProjectNewsData = async () => {
const res = await getprojectNewsList({ projectId: currentProject.value.id });
const res = await getprojectNewsList({ projectId: currentProject.value?.id });
if (res.code !== 200) return;
projectNewsData.value = res.data;
};
//查询大屏安全信息
const getsafetyInspectionData = async () => {
const res = await getsafetyInspectionList({ projectId: currentProject.value.id });
const res = await getsafetyInspectionList({ projectId: currentProject.value?.id });
if (res.code !== 200) return;
safetyInspectionData.value = res.data;
};