Commit de36047c by lanyulei Committed by GitHub

Merge pull request #75 from lanyulei/dev

fix: 修复主动接单引起数据缺失的问题。
parents 082fc490 3821fe27
......@@ -137,8 +137,10 @@ export default {
.process-div-title {
font-size: 15px;
margin-top: 10px;
margin-top: 6px;
color: #606266;
height: 18px;
line-height: 18px;
}
.process-div-remarks {
......
......@@ -79,7 +79,8 @@
currentNode.hideTpls.indexOf(tplItem.form_structure.id)!==-1) ||
(currentNode.writeTpls===undefined ||
currentNode.writeTpls===null ||
currentNode.writeTpls.indexOf(tplItem.form_structure.id)===-1)?true:false"
currentNode.writeTpls.indexOf(tplItem.form_structure.id)===-1)||
(isActiveProcessing && currentNode.activeOrder)?true:false"
:remote="remoteFunc"
:value="tplItem.form_data"
:data="tplItem.form_structure"
......@@ -318,7 +319,7 @@ export default {
process_method: 'person',
processor: [this.userId]
}]
activeOrder(jsonData, this.$route.query.workOrderId).then(response => {
activeOrder(jsonData, this.$route.query.workOrderId).then(() => {
this.getProcessNodeList()
})
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment