We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a0b90bd commit 2511f32Copy full SHA for 2511f32
src/api/bpm/model/index.ts
@@ -76,4 +76,3 @@ export const deployModel = async (id: number) => {
76
export const cleanModel = async (id: number) => {
77
return await request.delete({ url: '/bpm/model/clean?id=' + id })
78
}
79
-
src/views/bpm/model/form/index.vue
@@ -337,7 +337,10 @@ const handleDeploy = async () => {
337
message.success('发布成功')
338
// 返回列表页
339
await router.push({ name: 'BpmModel' })
340
- } catch (error: any) {}
+ } catch (error: any) {
341
+ console.error('发布失败:', error)
342
+ message.warning(error.message || '发布失败')
343
+ }
344
345
346
/** 步骤切换处理 */
0 commit comments