Ben Lin
2024-06-22 15bb6629a4cfdb03cb2544dce69ac87bfe82ccce
src/views/tigerprojects/mes/eng/route/typings/v-form-component.ts
@@ -8,7 +8,12 @@
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';
@@ -33,9 +38,16 @@
  // 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;
  schemas?: Array<any>;
}
/**