BUG和多余的文件

This commit is contained in:
shizhong
2023-06-16 19:31:12 +08:00
parent 2489cf00d7
commit 28507236a7
23 changed files with 200 additions and 2041 deletions

View File

@ -515,12 +515,15 @@ const handleChangeState = (row) => {
// 发布流程
const handleDeploy = (row) => {
message.confirm('是否部署该流程!!').then(async () => {
await ModelApi.deployModelApi(row.id)
message.success(t('部署成功'))
// 刷新列表
reload()
})
message
.confirm('是否部署该流程!!')
.then(async () => {
await ModelApi.deployModelApi(row.id)
message.success(t('部署成功'))
// 刷新列表
reload()
})
.catch(() => {})
}
// ========== 导入流程 ==========