Commit 3821fe27 by YuleiLan

fix: 修复主动接单引起数据缺失的问题。

parent 082fc490
...@@ -137,8 +137,10 @@ export default { ...@@ -137,8 +137,10 @@ export default {
.process-div-title { .process-div-title {
font-size: 15px; font-size: 15px;
margin-top: 10px; margin-top: 6px;
color: #606266; color: #606266;
height: 18px;
line-height: 18px;
} }
.process-div-remarks { .process-div-remarks {
......
...@@ -79,7 +79,8 @@ ...@@ -79,7 +79,8 @@
currentNode.hideTpls.indexOf(tplItem.form_structure.id)!==-1) || currentNode.hideTpls.indexOf(tplItem.form_structure.id)!==-1) ||
(currentNode.writeTpls===undefined || (currentNode.writeTpls===undefined ||
currentNode.writeTpls===null || 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" :remote="remoteFunc"
:value="tplItem.form_data" :value="tplItem.form_data"
:data="tplItem.form_structure" :data="tplItem.form_structure"
...@@ -318,7 +319,7 @@ export default { ...@@ -318,7 +319,7 @@ export default {
process_method: 'person', process_method: 'person',
processor: [this.userId] processor: [this.userId]
}] }]
activeOrder(jsonData, this.$route.query.workOrderId).then(response => { activeOrder(jsonData, this.$route.query.workOrderId).then(() => {
this.getProcessNodeList() 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