Skip to content

Commit

Permalink
Merge pull request #17 from lanyulei/dev
Browse files Browse the repository at this point in the history
fix bug.
  • Loading branch information
lanyulei authored Sep 2, 2020
2 parents 870bfee + a4cc1be commit 1070587
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/views/process/list/handle.vue
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@
<div
v-if="
processStructureValue.workOrder.state.length > 1 &&
nodeStepList[activeIndex].activeOrder"
currentNode.activeOrder"
>
<el-button
v-permisaction="['process:list:handle:active']"
Expand All @@ -105,7 +105,7 @@
<div v-else>
<template v-for="(item, index) in processStructureValue.edges">
<el-button
v-if="processStructureValue.workOrder.is_end===0 && item.source===nodeStepList[activeIndex].id"
v-if="processStructureValue.workOrder.is_end===0 && item.source===currentNode.id"
:key="index"
type="primary"
@click="submitAction(item)"
Expand Down

0 comments on commit 1070587

Please sign in to comment.