【修改】权限申请流程修改页面

This commit is contained in:
zhoulingpo
2023-04-24 11:51:30 +08:00
parent 3d69b7266b
commit fea8f7893b
6 changed files with 74 additions and 22 deletions
+5 -2
View File
@@ -193,8 +193,11 @@ export default {
},
handleSubmit () {
if (this.$refs.operationRef.submit()) {
// 通过了校验 需要整合参数
console.log('斤斤计较')
// 通过了校验 需要整合参数 拿到原来的dataJson 再把新添加的增进去 在拼成dataJson
let submit= JSON.parse(this.processOld.submitJson)
let dataJson= JSON.parse(this.processOld.dataJson)
let submitJson= {...data , ...this.$refs.operationRef.examineForm}
this.completeProcess(dataJson,submitJson)
}
}
}