File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
components/SimpleProcessDesignerV2/src
views/bpm/processInstance/detail Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -242,7 +242,6 @@ const addNode = (type: number) => {
242
242
emits (' update:childNode' , data )
243
243
}
244
244
if (type === NodeType .ROUTE_BRANCH_NODE ) {
245
- // TODO @lesan:高亮那边,需要考虑下。
246
245
const data: SimpleFlowNode = {
247
246
id: ' GateWay_' + generateUUID (),
248
247
name: NODE_DEFAULT_NAME .get (NodeType .ROUTE_BRANCH_NODE ) as string ,
Original file line number Diff line number Diff line change @@ -128,7 +128,8 @@ const setSimpleModelNodeTaskStatus = (
128
128
if (
129
129
simpleModel .type === NodeType .CONDITION_BRANCH_NODE ||
130
130
simpleModel .type === NodeType .PARALLEL_BRANCH_NODE ||
131
- simpleModel .type === NodeType .INCLUSIVE_BRANCH_NODE
131
+ simpleModel .type === NodeType .INCLUSIVE_BRANCH_NODE ||
132
+ simpleModel .type === NodeType .ROUTE_BRANCH_NODE
132
133
) {
133
134
// 网关节点。只有通过和未执行状态
134
135
if (finishedActivityIds .includes (simpleModel .id )) {
@@ -163,7 +164,7 @@ const setSimpleModelNodeTaskStatus = (
163
164
.process-viewer-container {
164
165
width : 100% ;
165
166
height : 100% ;
166
-
167
+
167
168
:deep (.process-viewer ) {
168
169
width : 100% ;
169
170
height : 100% !important ;
You can’t perform that action at this time.
0 commit comments