refactor -- 使用Mybatis Plus重构流程表单模块,修改数据库表(sql脚本添加"update脚本")

This commit is contained in:
konbai
2022-03-09 02:00:58 +08:00
parent 4a19591e5e
commit f5946970ef
34 changed files with 538 additions and 1040 deletions

View File

@@ -502,7 +502,7 @@ export default {
getForm(formId).then(res =>{
this.formTitle = "表单详情";
this.formConfOpen = true;
this.formConf = JSON.parse(res.data.formContent)
this.formConf = JSON.parse(res.data.content)
})
},
/** 启动流程 */
@@ -559,7 +559,7 @@ export default {
},
handleCurrentChange(data) {
if (data) {
this.currentRow = JSON.parse(data.formContent);
this.currentRow = JSON.parse(data.content);
}
},
/** 挂起/激活流程 */