2 Commits

Author SHA1 Message Date
魏保林
31f26e2004 Merge branch 'hotfix' of http://carsafe.uicp.cn/Front_Team/SPDM into hotfix 2026-04-02 20:54:36 +08:00
魏保林
7c54d363be 修复编辑待办 刷新问题 2026-04-02 20:54:33 +08:00

View File

@@ -694,6 +694,7 @@ watch(
);
const demandFormName = ref('SIMULATION_TASK_DEMAND_CREATE');
const changeSimulationType = (val: string) => {
tableFormRef.value.resetFun();
setPageStorage('simulationType', val);
if (simulationType.value === '工业设计') {
demandFormName.value = 'SIMULATION_TASK_DEMAND_INDUSTRIAL_CREATE';
@@ -706,7 +707,6 @@ const changeSimulationType = (val: string) => {
simTypeList = commonStore.getDictData(val).A;
tableFormRef.value.setOptionsFun('simType', simTypeList);
formHideKeys.value = getDemandHideKeys(val);
tableFormRef.value.resetFun();
}, 500);
};