fix: 修复bpm相关bug

This commit is contained in:
lizhixian 2025-02-13 14:29:54 +08:00
parent a0b90bd93d
commit 2511f32c86
2 changed files with 4 additions and 2 deletions

View File

@ -76,4 +76,3 @@ export const deployModel = async (id: number) => {
export const cleanModel = async (id: number) => {
return await request.delete({ url: '/bpm/model/clean?id=' + id })
}

View File

@ -337,7 +337,10 @@ const handleDeploy = async () => {
message.success('发布成功')
//
await router.push({ name: 'BpmModel' })
} catch (error: any) {}
} catch (error: any) {
console.error('发布失败:', error)
message.warning(error.message || '发布失败')
}
}
/** 步骤切换处理 */