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

This commit is contained in:
Lesan
2025-01-09 09:13:54 +08:00
2 changed files with 5 additions and 2 deletions

View File

@ -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 还需要满足以下要求
// 并行分支、包容分支内部节点不能跳转到外部节点

View File

@ -1,5 +1,7 @@
<!-- TODO @lesan其它路由条件可以使用这个哇 -->
<template>
<el-form ref="formRef" :model="condition" :rules="formRules" label-position="top">
<!-- TODO @lesan1默认选中 条件规则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: '',