YangYuGang
2025-03-11 bfdfeb40c7ba97511584a30477acf5ad801398ba
src/views/tigerprojects/mes/eng/route/index.vue
@@ -8,6 +8,8 @@
          @add-lf="handleAddlf"
          @select-node="handleSelect"
          @click-blank="clickBlank"
          @anchor-drop="AnchorDrop"
          @anchor-dragend="AnchorDragend"
          @init="init"
        />
      </LayoutContent>
@@ -16,11 +18,20 @@
        collapsible
        :reverseArrow="true"
        collapsedWidth="0"
        width="300"
        style="background: #fafafa; border-left: 1px solid #d9d9d9; padding: 10px"
        width="400"
        style="padding: 10px; border-left: 1px solid #d9d9d9; background: #fafafa"
        :zeroWidthTriggerStyle="{ 'margin-top': '-70px', 'background-color': 'gray' }"
      >
        <PropsPanel ref="propsPanel" :activeKey="routeConfig.activeKey">
        <PropsPanel
          ref="propsPanel"
          :activeKey="routeConfig.activeKey"
          :IsOperation="IsOperation"
          :title="title"
          :posttitle="posttitle"
          :entityName="entityName"
          @change-name="changeName"
          @change-node-name="changeNodeName"
        >
          <!-- <template v-for="item of formConfig.schemas" #[`${item.component}Props`]="data">
            <slot
              :name="`${item.component}Props`"
@@ -35,10 +46,15 @@
  </PageWrapper>
</template>
<script lang="ts" setup name="Route_View">
<script lang="ts" setup>
  import { FlowChart } from '/@/components/FlowChart';
  import { PageWrapper } from '/@/components/Page';
  import { SaveRouteData, getRouteData } from '/@/api/tigerapi/mes/router';
  import {
    SaveRouteData,
    SaveWoRouteData,
    getRouteData,
    getWoRouteData,
  } from '/@/api/tigerapi/mes/router';
  import { useModal } from '/@/components/Modal';
  import RouteModal from './RouteModal.vue';
  import { onMounted, ref, unref, Ref, provide, reactive, nextTick, watch } from 'vue';
@@ -51,6 +67,7 @@
    MES_ROUTE_EDGE,
    MES_ROUTE_NODE_ACT,
    MES_ROUTE,
    nodeText,
  } from '/@/api/tigerapi/model/router';
  import { useUserStore } from '/@/store/modules/user';
  import RouteDrawer from './RouteDrawer.vue';
@@ -64,13 +81,15 @@
  import { useTabs } from '/@/hooks/web/useTabs';
  import LogicFlow from '@logicflow/core';
  defineOptions({ name: 'Route_View' });
  const { refreshPage } = useTabs();
  const [registerDrawer, { openDrawer }] = useDrawer();
  const [registerModal, { openModal }] = useModal();
  const { t } = useI18n();
  const route = useRoute();
  const { setTitle } = useTabs();
  const { notification, createErrorModal } = useMessage();
  const routeConfig = reactive({
  const routeConfig = reactive<IRouteConfig>({
    // 表单配置
    schemas: [],
    layout: 'horizontal',
@@ -82,24 +101,38 @@
    currentAct: {} as MES_ROUTE_NODE_ACT,
    routeData: {} as RouteData,
    activeKey: 1,
  } as IRouteConfig);
    isWorkOrder: false,
  });
  const currRoute = ref({} as MES_ROUTE);
  const routeData = ref({
    nodes: [],
    edges: [],
  });
  provide<Ref<IRouteConfig>>('routeConfig', routeConfig);
  provide<Ref<IRouteConfig>>('routeConfig', routeConfig as unknown as Ref<IRouteConfig>);
  provide<Ref<MES_ROUTE>>('mesRoute', currRoute);
  const selectnode = ref({} as node);
  const currRotId = ref(route.params?.id);
  const prodCode = ref('');
  const custCode = ref('');
  const colSlots = ref<any>([]);
  const crudColSlots = ref<any>([]);
  const entityName = ref<any>('MES_POSITION');
  const props = defineProps({
    rotId: { type: String, default: '' },
    rotType: { type: String, default: 'Route' },
    prodCode: { type: String, default: '' },
    custCode: { type: String, default: '' },
  });
  const IsOperation = ref(false);
  const title = ref('');
  const posttitle = ref('');
  let _num = 1;
  let _numEdge = 1;
  watch(
    () => props.rotId,
    [() => props.rotId, () => props.prodCode, () => props.custCode],
    (v) => {
      if (v !== currRotId.value) {
        currRotId.value = v;
      if (!isNullOrEmpty(v[0]) && v[0] !== currRotId.value) {
        currRotId.value = v[0];
        if (!isNullOrUnDef(unref(currlf))) {
          unref(currlf).render({});
          routeData.value = {
@@ -109,15 +142,33 @@
          init(currlf);
        }
      }
      if (!isNullOrEmpty(v[1]) && v[1] !== prodCode.value) {
        prodCode.value = v[1];
      }
      if (!isNullOrEmpty(v[2]) && v[2] !== custCode.value) {
        custCode.value = v[2];
      }
    },
    { deep: true },
  );
  const currlf = ref(null) as Ref<LogicFlow | null>;
  console.log(currRotId.value);
  onMounted(() => {});
  /**
   * @description: 工艺路线初始化
   * @param {*} lf
   * @return {*}
   */
  async function init(lf) {
    currlf.value = unref(lf);
    //通过工艺路线ID获取图形数据,并渲染
    var _data = await getRouteData(currRotId.value);
    routeConfig.isWorkOrder = props.rotType == 'Wo';
    var _data =
      props.rotType == 'Route'
        ? await getRouteData(currRotId.value)
        : await getWoRouteData(currRotId.value);
    console.log('组件已挂载', _data);
    //工艺路线全信息,包括Node、Edge和Act
    routeConfig.routeData = _data.Data;
@@ -127,9 +178,20 @@
      if (!isNullOrEmpty(currRotId.value) && isNullOrEmpty(props.rotId)) {
        setTitle('设计:工艺路线-' + currRoute.value.ROT_CODE);
      }
      if (!isNullOrEmpty(prodCode.value)) {
        currRoute.value.PROD_CODE = !isNullOrEmpty(currRoute.value.PROD_CODE)
          ? currRoute.value.PROD_CODE
          : prodCode.value;
      }
      if (!isNullOrEmpty(custCode.value)) {
        currRoute.value.CUST_CODE = !isNullOrEmpty(currRoute.value.CUST_CODE)
          ? currRoute.value.CUST_CODE
          : custCode.value;
      }
      _data.Data.nodes.forEach((n) => {
        n.node.properties = JSON.parse(n.node.properties);
        routeData.value.nodes.push(n.node);
        n['node']['text']['value'] = n.NODE_NAME;
        routeData.value.nodes.push(n['node']);
      });
      console.log('111', routeData.value);
      _data.Data.edges.forEach((e) => {
@@ -145,6 +207,11 @@
    }
  }
  /**
   * @description: 获取工艺路线图数据
   * @param {*} lf
   * @return {*}
   */
  const GetRotData = (lf) => {
    var currRotData: RouteData = {
      route: {
@@ -160,9 +227,12 @@
        ROT_VER: currRoute.value.ROT_VER,
        IS_ACTIVE: currRoute.value.IS_ACTIVE,
        REMARK: currRoute.value.REMARK,
        AUTH_ORG: '',
        AUTH_ORG: useUserStore().getUserInfo.orgCode,
        AUTH_PROD: '',
        AUTH_WH: '',
        WORK_ORDER: currRoute.value.WORK_ORDER,
        PROD_CODE: currRoute.value.PROD_CODE,
        CUST_CODE: '',
      },
      nodes: [],
      edges: [],
@@ -170,7 +240,6 @@
    };
    var _nodes = unref(lf).getGraphData().nodes as node[];
    var _edges = unref(lf).getGraphData().edges as edge[];
    var _num = 1;
    const diffnodes = routeConfig.routeData.nodes.filter((itemA) =>
      _nodes.some((itemB) => itemB.id === itemA.ID),
    );
@@ -196,7 +265,7 @@
              GPH_PROP: JSON.stringify(n.properties),
              GPH_TEXT: n.text.value,
              REMARK: a.REMARK,
              AUTH_ORG: '',
              AUTH_ORG: useUserStore().getUserInfo.orgCode,
              AUTH_PROD: '',
              AUTH_WH: '',
              OPTION_1: '',
@@ -204,15 +273,21 @@
              OPTION_3: '',
              OPTION_4: '',
              OPTION_5: '',
              ACT_NAME: `${routeConfig.routeData.route.ROT_CODE}_${n.text.value}_${_num}`,
              ACT_NAME: isNullOrEmpty(a.ACT_NAME) ? `${n.text.value}_${_num}` : a.ACT_NAME,
              ACT_CODE: a.ACT_CODE,
              NEED_SETUP: a.NEED_SETUP,
              NEED_RESET: a.NEED_RESET,
              NODE_ID: a.NODE_ID,
              ACT_TYPE: a.ACT_TYPE,
              DO_TYPE: a.DO_TYPE,
              DO_METHOD: a.DO_METHOD,
              DO_IF_PASS: a.DO_IF_PASS,
              DO_IF_FAIL: a.DO_IF_FAIL,
              // DO_TYPE: a.DO_TYPE,
              // DO_METHOD: a.DO_METHOD,
              // DO_IF_PASS: a.DO_IF_PASS,
              // DO_IF_FAIL: a.DO_IF_FAIL,
              node: {} as node,
              IS_ACTIVE: a.IS_ACTIVE,
              WORK_ORDER: a.WORK_ORDER,
              PROD_CODE: a.PROD_CODE,
              CUST_CODE: a.CUST_CODE,
            };
            var pnode = [n];
            while (pnode[0].properties.operType == 'Action') {
@@ -227,6 +302,15 @@
        });
        routeConfig.routeData.acts = _diffacts;
      } else {
        let _nodeName = '';
        switch (n.properties.operType) {
          case 'End':
            _nodeName = `${n.text.value}`;
            break;
          default:
            _nodeName = `${n.text.value}_${_num}`;
            break;
        }
        var _diffnodes = diffnodes.length > 0 ? diffnodes : routeConfig.routeData.nodes;
        _diffnodes.forEach((nd) => {
          if (nd.ID == n.id) {
@@ -237,10 +321,10 @@
              UPDATE_TIME: currRotData.route.UPDATE_TIME,
              UPDATE_USER: useUserStore().getUserInfo.userId as string,
              GHOST_ROW: false,
              NODE_NAME: `${currRotData.route.ROT_CODE}_${n.text.value}_${_num}`,
              NODE_NAME: isNullOrEmpty(nd.NODE_NAME) ? _nodeName : nd.NODE_NAME,
              ROT_ID: currRotData.route.ID,
              SEGMENT: nd.SEGMENT,
              OPER_CODE: nd.OPER_CODE,
              OPER_CODE: isNullOrEmpty(nd.OPER_CODE) ? n.properties.operCode : nd.OPER_CODE,
              GPH_TYPE: n.type,
              GPH_X: n.x,
              GPH_Y: n.y,
@@ -248,9 +332,10 @@
              GPH_TEXT: n.text.value,
              IS_ACTIVE: nd.IS_ACTIVE,
              IS_CALC_FPY: nd.IS_CALC_FPY,
              ALLOW_DFT_IN: nd.ALLOW_DFT_IN,
              CAN_SKIP: nd.CAN_SKIP,
              REMARK: nd.REMARK,
              AUTH_ORG: '',
              AUTH_ORG: useUserStore().getUserInfo.orgCode,
              AUTH_PROD: '',
              AUTH_WH: '',
              IS_FIRST_NODE: 'N',
@@ -262,6 +347,9 @@
              OPTION_4: '',
              OPTION_5: '',
              node: {} as node,
              WORK_ORDER: nd.WORK_ORDER,
              PROD_CODE: nd.PROD_CODE,
              CUST_CODE: nd.CUST_CODE,
            };
            nd.GPH_TYPE = n.type;
            nd.GPH_PROP = JSON.stringify(n.properties);
@@ -271,6 +359,8 @@
            if (unref(lf).getNodeIncomingNode(n.id).length == 0) {
              node.IS_FIRST_NODE = 'Y';
              nd.IS_FIRST_NODE = 'Y';
              node.IS_INPUT = 'Y';
              nd.IS_INPUT = 'Y';
            }
            currRotData.nodes.push(node);
          }
@@ -300,7 +390,7 @@
        GPH_PROP: JSON.stringify(e.properties),
        GPH_POTS: JSON.stringify(e.pointsList),
        REMARK: '',
        AUTH_ORG: '',
        AUTH_ORG: useUserStore().getUserInfo.orgCode,
        AUTH_PROD: '',
        AUTH_WH: '',
        EDGE_TYPE: 0,
@@ -310,9 +400,13 @@
        OPTION_4: '',
        OPTION_5: '',
        edge: {} as edge,
        WORK_ORDER: routeConfig.routeData.route.WORK_ORDER,
        PROD_CODE: routeConfig.routeData.route.PROD_CODE,
        CUST_CODE: routeConfig.routeData.route.CUST_CODE,
      };
      routeConfig.routeData.edges.push(edge);
      currRotData.edges.push(edge);
      _numEdge++;
    });
    return currRotData;
  };
@@ -322,7 +416,10 @@
   */
  async function handleSave(lf) {
    console.log('handleSave', unref(lf).getGraphData().nodes[0]);
    if (isNullOrEmpty(currRoute.value.ROT_CODE)) {
    if (
      isNullOrEmpty(currRoute.value.ROT_CODE) ||
      (props.rotType == 'Wo' && isNullOrEmpty(currRoute.value.WORK_ORDER))
    ) {
      createErrorModal({
        title: t('未选择'),
        content: t('未选择工艺路线或者新增工艺路线'),
@@ -330,29 +427,43 @@
      });
    } else {
      var hasError = false;
      let msg = '';
      unref(lf)
        .getGraphData()
        .nodes.forEach((n) => {
          /* 判断是否有Node未连接 */
          if (
            unref(lf).getNodeIncomingEdge(n.id).length == 0 &&
            unref(lf).getNodeOutgoingEdge(n.id).length == 0
          ) {
            hasError = true;
            msg = '有节点未连线,请重新设计工艺路线再保存数据!';
          }
          if (
            unref(lf)
              .getNodeOutgoingNode(n.id)
              .some((q) => q.properties.operType == 'End') &&
            unref(lf)
              .getNodeOutgoingNode(n.id)
              .some((q) => q.properties.operType != 'End' && q.properties.operType != 'Action')
          ) {
            hasError = true;
            msg = '完工节点不是唯一的最后节点,请重新设计工艺路线再保存数据!';
          }
        });
      if (hasError) {
        createErrorModal({
          title: t('警告'),
          content: t('有节点未连线,请重新设计工艺路线再保存数据!'),
          content: t(msg),
          getContainer: () => document.body,
        });
      } else {
        var action = await SaveRouteData(GetRotData(lf));
        var action =
          props.rotType == 'Wo'
            ? await SaveWoRouteData(GetRotData(lf))
            : await SaveRouteData(GetRotData(lf));
        if (action.IsSuccessed) {
          notification['success']({
            message: '操作成功',
            description: `保存工艺路线:${currRoute.value.ROT_CODE} 成功`,
          });
          await refreshPage();
        }
      }
    }
@@ -378,123 +489,225 @@
  function handleSelect(data, lf) {
    lf.graphModel.clearSelectElements();
    lf.graphModel.getNodeModelById(data.data.id).setSelected(true);
    let nnn = lf.graphModel.getNodeIncomingNode(data.data.id);
    selectnode.value = data.data;
    if (isNullOrUnDef(routeConfig.routeData)) {
      //先初始化routeData
      routeConfig.routeData = {};
      routeConfig.routeData.route = currRoute.value;
      routeConfig.routeData.nodes = [];
      routeConfig.routeData.edges = [];
      routeConfig.routeData.acts = [];
      //再返回具体数据
      routeConfig.routeData = GetRotData(lf);
    }
    var _node = routeConfig.routeData.nodes.filter((x) => x.ID == selectnode.value.id)[0];
    if (isNullOrUnDef(_node)) {
      _node = {
        ID: selectnode.value.id,
        CREATE_TIME: currRoute.value.CREATE_TIME,
        CREATE_USER: useUserStore().getUserInfo.userId as string,
        UPDATE_TIME: currRoute.value.UPDATE_TIME,
        UPDATE_USER: useUserStore().getUserInfo.userId as string,
        GHOST_ROW: false,
        NODE_NAME: `${currRoute.value.ROT_CODE}_${selectnode.value.text.value}_0`,
        ROT_ID: currRoute.value.ID,
        SEGMENT: '',
        OPER_CODE: selectnode.value.type,
        GPH_TYPE: selectnode.value.type,
        GPH_X: selectnode.value.x,
        GPH_Y: selectnode.value.y,
        GPH_PROP: '',
        GPH_TEXT: selectnode.value.text.value,
        IS_ACTIVE: 'Y',
        IS_CALC_FPY: 'N',
        CAN_SKIP: 'N',
        REMARK: '',
        AUTH_ORG: '',
        AUTH_PROD: '',
        AUTH_WH: '',
        IS_FIRST_NODE: '',
        IS_INPUT: '',
        IS_OUTPUT: '',
        OPTION_1: '',
        OPTION_2: '',
        OPTION_3: '',
        OPTION_4: '',
        OPTION_5: '',
        node: {} as node,
      };
      routeConfig.routeData.nodes.push(_node);
    }
    //是行为
    if (selectnode.value.properties.operType && selectnode.value.properties.operType == 'Action') {
      var _act = routeConfig.routeData.acts.filter((x) => x.ID == selectnode.value.id)[0];
      routeConfig.activeKey = 3;
      routeConfig.currentAct = {
        ID: selectnode.value.id,
        CREATE_TIME: currRoute.value.CREATE_TIME,
        CREATE_USER: useUserStore().getUserInfo.userId as string,
        UPDATE_TIME: currRoute.value.UPDATE_TIME,
        UPDATE_USER: useUserStore().getUserInfo.userId as string,
        GHOST_ROW: false,
        AUTH_ORG: '',
        AUTH_PROD: '',
        AUTH_WH: '',
        ACT_NAME: _act.ACT_NAME,
        ROT_ID: currRoute.value.ID,
        NODE_ID: _act.NODE_ID,
        ACT_TYPE: _act.ACT_TYPE,
        GPH_TYPE: selectnode.value.type,
        GPH_X: selectnode.value.x,
        GPH_Y: selectnode.value.y,
        GPH_PROP: JSON.stringify(selectnode.value.properties),
        GPH_TEXT: selectnode.value.text.value,
        DO_TYPE: _act.DO_TYPE,
        DO_METHOD: _act.DO_METHOD,
        DO_IF_PASS: _act.DO_IF_PASS,
        DO_IF_FAIL: _act.DO_IF_FAIL,
        IS_ACTIVE: _act.IS_ACTIVE,
        OPTION_1: '',
        OPTION_2: '',
        OPTION_3: '',
        OPTION_4: '',
        OPTION_5: '',
        REMARK: '',
        node: {} as node,
      };
    if (
      unref(lf)
        .getGraphData()
        .nodes.some((q) => q.properties.operCode == 'EndNode' && q.id != selectnode.value.id) &&
      selectnode.value.properties.operType == 'End'
    ) {
      lf.graphModel.deleteNode(selectnode.value.id);
      createErrorModal({
        title: t('警告'),
        content: t('已经存在完工节点,不能再拖入完工节点!'),
        getContainer: () => document.body,
      });
    } else {
      //是工序
      routeConfig.currentItem = {
        ID: selectnode.value.id,
        CREATE_TIME: currRoute.value.CREATE_TIME,
        CREATE_USER: useUserStore().getUserInfo.userId as string,
        UPDATE_TIME: currRoute.value.UPDATE_TIME,
        UPDATE_USER: useUserStore().getUserInfo.userId as string,
        GHOST_ROW: false,
        NODE_NAME: _node.NODE_NAME ?? '',
        ROT_ID: currRoute.value.ID,
        SEGMENT: _node.SEGMENT,
        OPER_CODE: _node.OPER_CODE,
        GPH_TYPE: selectnode.value.type,
        GPH_X: selectnode.value.x,
        GPH_Y: selectnode.value.y,
        GPH_PROP: '',
        GPH_TEXT: selectnode.value.text.value,
        IS_ACTIVE: _node.IS_ACTIVE,
        IS_CALC_FPY: _node.IS_CALC_FPY,
        CAN_SKIP: _node.CAN_SKIP,
        IS_INPUT: _node.IS_INPUT,
        IS_OUTPUT: _node.IS_OUTPUT,
        REMARK: _node.REMARK,
      };
      routeConfig.isCalcFpy = _node.IS_CALC_FPY == 'Y';
      routeConfig.canSkip = _node.CAN_SKIP == 'Y';
      routeConfig.isInput = _node.IS_INPUT == 'Y';
      routeConfig.isOutput = _node.IS_OUTPUT == 'Y';
      if (isNullOrUnDef(routeConfig.routeData)) {
        //先初始化routeData
        routeConfig.routeData = {};
        routeConfig.routeData.route = currRoute.value;
        routeConfig.routeData.nodes = [];
        routeConfig.routeData.edges = [];
        routeConfig.routeData.acts = [];
        //再返回具体数据
        routeConfig.routeData = GetRotData(lf);
      }
      console.log(routeConfig.currentItem);
      routeConfig.activeKey = 2;
      var _node = routeConfig.routeData.nodes.filter((x) => x.ID == selectnode.value.id)[0];
      if (isNullOrUnDef(_node)) {
        let _nodeName = '';
        switch (selectnode.value.properties.operType) {
          case 'End':
            _nodeName = `${selectnode.value.text.value}`;
            break;
          default:
            _nodeName = `${selectnode.value.text.value}_${_num}`;
            break;
        }
        _node = {
          ID: selectnode.value.id,
          CREATE_TIME: currRoute.value.CREATE_TIME,
          CREATE_USER: useUserStore().getUserInfo.userId as string,
          UPDATE_TIME: currRoute.value.UPDATE_TIME,
          UPDATE_USER: useUserStore().getUserInfo.userId as string,
          GHOST_ROW: false,
          NODE_NAME: _nodeName,
          ROT_ID: currRoute.value.ID,
          SEGMENT: '',
          OPER_CODE: selectnode.value.properties.operCode,
          GPH_TYPE: selectnode.value.type,
          GPH_X: selectnode.value.x,
          GPH_Y: selectnode.value.y,
          GPH_PROP: JSON.stringify(selectnode.value.properties),
          GPH_TEXT: selectnode.value.text.value,
          IS_ACTIVE: 'Y',
          IS_CALC_FPY: 'N',
          CAN_SKIP: 'N',
          REMARK: '',
          AUTH_ORG: useUserStore().getUserInfo.orgCode,
          AUTH_PROD: '',
          AUTH_WH: '',
          IS_FIRST_NODE: '',
          ALLOW_DFT_IN: '',
          IS_INPUT: '',
          IS_OUTPUT: '',
          OPTION_1: '',
          OPTION_2: '',
          OPTION_3: '',
          OPTION_4: '',
          OPTION_5: '',
          node: {} as node,
          WORK_ORDER: currRoute.value.WORK_ORDER,
          PROD_CODE: currRoute.value.PROD_CODE,
          CUST_CODE: '',
        };
        routeConfig.routeData.nodes.push(_node);
        _num++;
      }
      //是行为
      if (
        selectnode.value.properties['operType'] &&
        selectnode.value.properties['operType'] == 'Action'
      ) {
        var _act = routeConfig.routeData.acts.filter((x) => x.ID == selectnode.value.id)[0];
        routeConfig.activeKey = 2;
        IsOperation.value = false;
        title.value = '行为';
        posttitle.value = '';
        if (isNullOrUnDef(_act)) {
          _act = {
            ID: selectnode.value.id,
            CREATE_TIME: currRoute.value.CREATE_TIME,
            CREATE_USER: useUserStore().getUserInfo.userId as string,
            UPDATE_TIME: currRoute.value.UPDATE_TIME,
            UPDATE_USER: useUserStore().getUserInfo.userId as string,
            GHOST_ROW: false,
            AUTH_ORG: useUserStore().getUserInfo.orgCode,
            AUTH_PROD: '',
            AUTH_WH: '',
            ACT_NAME: `${selectnode.value.text.value}_${_numEdge}`,
            ACT_CODE: '',
            ROT_ID: currRoute.value.ID,
            NODE_ID: '',
            ACT_TYPE: 0,
            GPH_TYPE: selectnode.value.type,
            GPH_X: selectnode.value.x,
            GPH_Y: selectnode.value.y,
            GPH_PROP: JSON.stringify(selectnode.value.properties),
            GPH_TEXT: selectnode.value.text.value,
            NEED_SETUP: 'Y',
            NEED_RESET: 'N',
            // DO_TYPE: 0,
            // DO_METHOD: '',
            // DO_IF_PASS: '',
            // DO_IF_FAIL: '',
            IS_ACTIVE: '',
            OPTION_1: '',
            OPTION_2: '',
            OPTION_3: '',
            OPTION_4: '',
            OPTION_5: '',
            REMARK: '',
            node: {} as node,
            WORK_ORDER: currRoute.value.WORK_ORDER,
            PROD_CODE: currRoute.value.PROD_CODE,
            CUST_CODE: '',
          };
          routeConfig.routeData.acts.push(_act);
          _numEdge++;
        }
        routeConfig.currentAct = {
          ID: selectnode.value.id,
          CREATE_TIME: currRoute.value.CREATE_TIME,
          CREATE_USER: useUserStore().getUserInfo.userId as string,
          UPDATE_TIME: currRoute.value.UPDATE_TIME,
          UPDATE_USER: useUserStore().getUserInfo.userId as string,
          GHOST_ROW: false,
          AUTH_ORG: _act.AUTH_ORG,
          AUTH_PROD: _act.AUTH_PROD,
          AUTH_WH: _act.AUTH_WH,
          ACT_NAME: _act.ACT_NAME,
          ACT_CODE: _act.ACT_CODE,
          ROT_ID: currRoute.value.ID,
          NODE_ID: _act.NODE_ID,
          ACT_TYPE: _act.ACT_TYPE,
          GPH_TYPE: selectnode.value.type,
          GPH_X: selectnode.value.x,
          GPH_Y: selectnode.value.y,
          GPH_PROP: JSON.stringify(selectnode.value.properties),
          GPH_TEXT: selectnode.value.text.value,
          NEED_SETUP: _act.NEED_SETUP,
          NEED_RESET: _act.NEED_RESET,
          // DO_TYPE: _act.DO_TYPE,
          // DO_METHOD: _act.DO_METHOD,
          // DO_IF_PASS: _act.DO_IF_PASS,
          // DO_IF_FAIL: _act.DO_IF_FAIL,
          IS_ACTIVE: _act.IS_ACTIVE,
          OPTION_1: '',
          OPTION_2: '',
          OPTION_3: '',
          OPTION_4: '',
          OPTION_5: '',
          REMARK: '',
          node: {} as node,
          WORK_ORDER: currRoute.value.WORK_ORDER,
          PROD_CODE: currRoute.value.PROD_CODE,
          CUST_CODE: '',
        };
        const actModel = lf.getNodeModelById(selectnode.value.id);
        actModel.updateText(routeConfig.currentAct?.ACT_NAME);
      } else {
        //是工序
        IsOperation.value = false;
        routeConfig.currentItem = {
          ID: selectnode.value.id,
          CREATE_TIME: currRoute.value.CREATE_TIME,
          CREATE_USER: useUserStore().getUserInfo.userId as string,
          UPDATE_TIME: currRoute.value.UPDATE_TIME,
          UPDATE_USER: useUserStore().getUserInfo.userId as string,
          GHOST_ROW: false,
          AUTH_ORG: _node.AUTH_ORG,
          AUTH_PROD: _node.AUTH_PROD,
          AUTH_WH: _node.AUTH_WH,
          NODE_NAME: _node.NODE_NAME ?? '',
          ROT_ID: currRoute.value.ID,
          SEGMENT: _node.SEGMENT,
          OPER_CODE: selectnode.value.properties.operCode,
          GPH_TYPE: selectnode.value.type,
          GPH_X: selectnode.value.x,
          GPH_Y: selectnode.value.y,
          GPH_PROP: JSON.stringify(selectnode.value.properties),
          GPH_TEXT: selectnode.value.text.value,
          IS_ACTIVE: _node.IS_ACTIVE,
          IS_CALC_FPY: _node.IS_CALC_FPY,
          CAN_SKIP: _node.CAN_SKIP,
          IS_INPUT: _node.IS_INPUT,
          ALLOW_DFT_IN: _node.ALLOW_DFT_IN,
          IS_OUTPUT: _node.IS_OUTPUT,
          REMARK: _node.REMARK,
          WORK_ORDER: currRoute.value.WORK_ORDER,
          PROD_CODE: currRoute.value.PROD_CODE,
          CUST_CODE: '',
          node: {} as node,
        };
        const nodeModel = lf.getNodeModelById(selectnode.value.id);
        nodeModel.updateText(_node.NODE_NAME);
        routeConfig.isCalcFpy = _node.IS_CALC_FPY == 'Y';
        routeConfig.canSkip = _node.CAN_SKIP == 'Y';
        routeConfig.isActive = _node.IS_ACTIVE == 'Y';
        routeConfig.allowDftIn = _node.ALLOW_DFT_IN == 'Y';
        routeConfig.isInput = _node.IS_INPUT == 'Y';
        routeConfig.isOutput = _node.IS_OUTPUT == 'Y';
        setTimeout(() => {
          console.log(routeConfig.currentItem);
          routeConfig.activeKey = 2;
          IsOperation.value = true;
          title.value = '工序';
          posttitle.value = '岗位';
        }, 100);
      }
    }
  }
@@ -502,11 +715,57 @@
    unref(lfInstance).render({});
  }
  /**
   * @description: 拖动边放开时事件
   * @param {*} data
   * @param {*} lf
   * @return {*}
   */
  function AnchorDrop(data, lf) {
    let targetNode = lf.graphModel.getNodeModelById(data.edgeModel.targetNodeId);
    if (targetNode.properties['operType'] == 'End') {
      if (data.nodeModel.properties['operType'] == 'Action') {
        lf.graphModel.deleteEdgeById(data.edgeModel.id);
        createErrorModal({
          title: t('警告'),
          content: t('行为节点不能连接完工节点!'),
          getContainer: () => document.body,
        });
      } else {
        if (
          unref(lf).getNodeIncomingNode(data.nodeModel.id).length == 0 &&
          unref(lf)
            .getNodeOutgoingNode(data.nodeModel.id)
            .some((q) => q.properties.operType == 'Node')
        ) {
          lf.graphModel.deleteEdgeById(data.edgeModel.id);
          createErrorModal({
            title: t('警告'),
            content: t('开始节点不能直接连接完工节点!'),
            getContainer: () => document.body,
          });
        }
      }
    }
  }
  /**
   * @description: 锚点连线结束,不管是否创建连线都会触发。
   * @param {*} data
   * @param {*} e
   * @param {*} nodeModel
   * @param {*} lf
   * @return {*}
   */
  function AnchorDragend(data, e, nodeModel, lf) {}
  /*
   *点击画布事件
   */
  function clickBlank() {
    routeConfig.activeKey = 1;
    title.value = '';
    posttitle.value = '';
  }
  /*
@@ -526,4 +785,25 @@
    //再返回具体数据
    routeConfig.routeData = GetRotData(unref(lfInstance));
  }
  /**
   * @description: 名称改变回调方法,返回后更新节点文本
   * @param {*} e
   * @return {*}
   */
  function changeName(e) {
    console.log(e.val);
    const nodeModel = unref(currlf)?.getNodeModelById(e.id);
    nodeModel?.updateText(e.val);
  }
  /**
   * @description: 名称改变回调方法,返回后更新节点文本
   * @param {*} e
   * @return {*}
   */
  function changeNodeName(e) {
    console.log(e.val);
    const nodeModel = unref(currlf)?.getNodeModelById(e.id);
    nodeModel?.updateText(e.val);
  }
</script>