| | |
| | | * @version: |
| | | * @Date: 2024-06-18 23:30:30 |
| | | * @LastEditors: Ben Lin |
| | | * @LastEditTime: 2024-08-06 10:04:20 |
| | | * @LastEditTime: 2024-10-21 23:03:27 |
| | | --> |
| | | <template> |
| | | <PageWrapper |
| | |
| | | import { useMessage } from '/@/hooks/web/useMessage'; |
| | | import LogicFlow from '@logicflow/core'; |
| | | |
| | | defineOptions({ name: 'DeptManagement' }); |
| | | defineOptions({ name: '工单工艺绑定' }); |
| | | |
| | | const { notification, createErrorModal } = useMessage(); |
| | | const go = useGo(); |
| | |
| | | edges: [], |
| | | }); |
| | | const custImport = ref<any>(null); |
| | | const [registerCust, { openModal: openCustomModal, closeModal }] = useModal(); |
| | | const [registerCust] = useModal(); |
| | | provide<Ref<any>>('objParams', objParams); |
| | | provide<Ref<any>>('selectedNodes', nodes); |
| | | setTitle(objParams.value.Title); //设置标签页标题 |
| | |
| | | if (!isNullOrUnDef(custImport.value)) { |
| | | const [{ GetHomeUrl }] = custImport.value['default'](); |
| | | // 本例的效果时点击返回始终跳转到账号列表页,实际应用时可返回上一页 |
| | | go(GetHomeUrl({ colSlots: colSlots.value })); |
| | | go(GetHomeUrl({ colSlots: colSlots.value, sName:objParams.value.firstSessionName })); |
| | | } |
| | | } |
| | | |