修复需求详情工位显示问题

This commit is contained in:
weibl
2026-03-03 14:45:09 +08:00
parent cf787d9419
commit 5c7b4054e9
2 changed files with 6 additions and 0 deletions

View File

@@ -66,6 +66,9 @@ const getDemandInfoFun = async () => {
]);
const simTypeList: any = commonStore.getDictData(res.data.demandType);
tableFormRef.value.setOptionsFun('simType', simTypeList.A);
tableFormRef.value.setOptionsFun('workspaceId', [
{ label: res.data.workspaceName, value: res.data.workspaceId },
]);
}
};

View File

@@ -96,6 +96,9 @@ const getDemandInfo = async () => {
]);
const simTypeList: any = commonStore.getDictData(res.data.demandType);
tableFormRef.value.setOptionsFun('simType', simTypeList.A);
tableFormRef.value.setOptionsFun('workspaceId', [
{ label: res.data.workspaceName, value: res.data.workspaceId },
]);
}
};