| | |
| | | </FormItem> |
| | | <FormItem label="行为类型" name="行为类型"> |
| | | <ApiSelect |
| | | :api="ActTypeStatus" |
| | | :api="GetEnum" |
| | | :params="{ name: 'MES_ROUTE_NODE_ACT+ACT_TYPEs' }" |
| | | v-model:value="routeConfig.currentAct.ACT_TYPE" |
| | | resultField="Data" |
| | | :label-field="actTypeLable" |
| | |
| | | </FormItem> |
| | | <FormItem label="自定义方法类型" name="自定义方法类型"> |
| | | <ApiSelect |
| | | :api="DoTypeStatus" |
| | | :api="GetEnum" |
| | | :params="{ name: 'MES_ROUTE_NODE_ACT+DO_TYPEs' }" |
| | | v-model:value="routeConfig.currentAct.DO_TYPE" |
| | | resultField="Data" |
| | | :label-field="actTypeLable" |
| | |
| | | import { ApiSelect } from '/@/components/Form/index'; |
| | | import { ref, unref, watch } from 'vue'; |
| | | import { useLocale } from '/@/locales/useLocale'; |
| | | import { ActTypeStatus, DoTypeStatus } from '/@/api/tigerapi/mes/router'; |
| | | import { GetEnum } from '/@/api/tigerapi/system'; |
| | | |
| | | const { getLocale } = useLocale(); |
| | | const { routeConfig, mesRoute } = useRouteDesignState(); |