diff --git a/src/views/resource/resourceAuditFlowList.vue b/src/views/resource/resourceAuditFlowList.vue
index 771ddfb96..ce9e57857 100644
--- a/src/views/resource/resourceAuditFlowList.vue
+++ b/src/views/resource/resourceAuditFlowList.vue
@@ -181,7 +181,7 @@ export default {
try {
this.loading = true
const res = await deployWorkflow({ modelId: row.modelId })
- if (res.code === 0) {
+ if (res.code=== 0) {
this.$message.success(this.$t('common.operationSuccess'))
this.fetchData()
} else {
@@ -189,7 +189,7 @@ export default {
}
} catch (error) {
console.error('部署流程失败:', error)
- this.$message.error(this.$t('common.submitFailed'))
+ this.$message.error(error)
} finally {
this.loading = false
}