fix: 工位时间维护

This commit is contained in:
JiangSheng
2026-02-04 14:28:37 +08:00
parent cb91656612
commit 8373e4d4ed

View File

@@ -195,11 +195,7 @@ const dataChangeFun = () => {
};
const updateSingleWorkspaceTimeFun = async (row: any, propertyName: string) => {
const propertyValue = row[propertyName];
if (!propertyValue) {
return;
}
const propertyValue = row[propertyName] || '';
const isDesignPhase = currentPhase.value?.label?.includes('设计') || false;
const syncToTask = isDesignPhase;