| | |
| | | import { validateOptions } from 'ant-design-vue/lib/form/useForm'; |
| | | import { RuleError } from 'ant-design-vue/lib/form/interface'; |
| | | import { FormItem } from '/@/components/Form'; |
| | | import { MES_ROUTE, MES_ROUTE_NODE } from '/@/api/tigerapi/model/router'; |
| | | import { |
| | | MES_ROUTE, |
| | | MES_ROUTE_NODE, |
| | | MES_ROUTE_NODE_ACT, |
| | | RouteData, |
| | | } from '/@/api/tigerapi/model/router'; |
| | | |
| | | type LayoutType = 'horizontal' | 'vertical' | 'inline'; |
| | | type labelLayout = 'flex' | 'Grid'; |
| | |
| | | // Internal component size of the form |
| | | size?: 'default' | 'small' | 'large'; |
| | | // }; |
| | | routeData: RouteData; |
| | | // 当前选中项 |
| | | currentItem?: MES_ROUTE_NODE; |
| | | currentAct?: MES_ROUTE_NODE_ACT; |
| | | activeKey?: PropsTabKey; |
| | | isCalcFpy?: boolean; |
| | | canSkip?: boolean; |
| | | isInput?: boolean; |
| | | isOutput?: boolean; |
| | | } |
| | | |
| | | /** |