feat(sj_1.0.0): 修复工作流批次列表显示错误问题
This commit is contained in:
parent
43fa5ae3bf
commit
66492cf9fd
@ -11,7 +11,8 @@ const router = useRouter();
|
|||||||
const route = useRoute();
|
const route = useRoute();
|
||||||
|
|
||||||
// 此处可能有问题
|
// 此处可能有问题
|
||||||
const workflowId = Number.parseInt(route.query?.workflowId as string, 10);
|
const workflowId =
|
||||||
|
route.query?.workflowId === undefined ? null : Number.parseInt(route.query?.workflowId as string, 10);
|
||||||
|
|
||||||
const appStore = useAppStore();
|
const appStore = useAppStore();
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user