File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed
src/components/SimpleProcessDesignerV2/src/nodes-config Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -157,10 +157,11 @@ const addRouteGroup = () => {
157
157
})
158
158
}
159
159
160
- const deleteRouteGroup = (index ) => {
160
+ const deleteRouteGroup = (index : number ) => {
161
161
routerGroups .value .splice (index , 1 )
162
162
}
163
163
164
+ // TODO @lesan:还有一些 router 的命名,没改过来呢
164
165
const getRoutableNode = () => {
165
166
// TODO @lesan 还需要满足以下要求
166
167
// 并行分支、包容分支内部节点不能跳转到外部节点
Original file line number Diff line number Diff line change
1
+ <!-- TODO @lesan:其它路由条件,可以使用这个哇? -->
1
2
<template >
2
3
<el-form ref =" formRef" :model =" condition" :rules =" formRules" label-position =" top" >
4
+ <!-- TODO @lesan:1)默认选中 条件规则;2)条件规则放前面,因为更常用!-->
3
5
<el-form-item label =" 配置方式" prop =" conditionType" >
4
6
<el-radio-group v-model =" condition.conditionType" >
5
7
<el-radio
@@ -193,7 +195,7 @@ const addConditionGroup = (conditions) => {
193
195
and: true ,
194
196
rules: [
195
197
{
196
- type: 1 ,
198
+ type: 1 , // TODO @lesan:枚举~
197
199
opName: ' 等于' ,
198
200
opCode: ' ==' ,
199
201
leftSide: ' ' ,
You can’t perform that action at this time.
0 commit comments