Commit 077dfdcd by Lesan

Merge remote-tracking branch 'refs/remotes/yudao/feature/bpm' into feature/bpm-n

parents 4741f373 77938c38
......@@ -157,10 +157,11 @@ const addRouteGroup = () => {
})
}
const deleteRouteGroup = (index) => {
const deleteRouteGroup = (index: number) => {
routerGroups.value.splice(index, 1)
}
// TODO @lesan:还有一些 router 的命名,没改过来呢
const getRoutableNode = () => {
// TODO @lesan 还需要满足以下要求
// 并行分支、包容分支内部节点不能跳转到外部节点
......
<!-- TODO @lesan:其它路由条件,可以使用这个哇? -->
<template>
<el-form ref="formRef" :model="condition" :rules="formRules" label-position="top">
<!-- TODO @lesan:1)默认选中 条件规则;2)条件规则放前面,因为更常用!-->
<el-form-item label="配置方式" prop="conditionType">
<el-radio-group v-model="condition.conditionType">
<el-radio
......@@ -193,7 +195,7 @@ const addConditionGroup = (conditions) => {
and: true,
rules: [
{
type: 1,
type: 1, // TODO @lesan:枚举~
opName: '等于',
opCode: '==',
leftSide: '',
......
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