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

@@ -215,7 +215,7 @@ export default {
form: {
formId: null,
formName: null,
formContent: null,
content: null,
remark: null
},
// 表单校验
@@ -277,11 +277,11 @@ export default {
const formId = that.$route.query && that.$route.query.formId;
if (formId) {
getForm(formId).then(res =>{
that.formConf = JSON.parse(res.data.formContent);
that.formConf = JSON.parse(res.data.content);
that.drawingList = that.formConf.fields;
that.form = res.data;
})
}else {
} else {
if (formConfInDB) {
that.formConf = formConfInDB
}
@@ -505,7 +505,7 @@ export default {
fields: deepClone(this.drawingList),
...this.formConf
}
this.form.formContent = JSON.stringify(this.formData);
this.form.content = JSON.stringify(this.formData);
this.formOpen = true;
this.formTitle = "添加表单";
},
@@ -514,7 +514,7 @@ export default {
this.form = {
formId: null,
formName: null,
formContent: null,
content: null,
remark: null
};
this.resetForm("form");