123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492 |
- <template>
- <div
- class="mainContentBox"
- style="padding: 0; box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1)"
- >
- <div class="header">
- <div class="title">绑定工序</div>
- <el-button :icon="Back" size="small" @click="back">返回</el-button>
- </div>
- <div class="binContainer">
- <div class="processTree">
- <el-scrollbar>
- <el-collapse v-model="activeNames">
- <el-collapse-item
- v-for="(pProcess, pIndex) in list1"
- :key="pProcess.workSection"
- :name="pIndex"
- >
- <template #title>
- <div class="title2">
- {{ getNameByDictType(pProcess.workSection) }}
- </div>
- </template>
- <div class="treeChild">
- <div
- class="childItem"
- v-for="(item, index) in pProcess?.baseOperationList"
- :key="index"
- :draggable="!editStatus && usableStatus"
- @dragstart="
- onDragStart($event, nodeType, item.operationName, item)
- "
- >
- {{ item.operationName }}
- </div>
- </div>
- </el-collapse-item>
- </el-collapse>
- </el-scrollbar>
- </div>
- <div
- class="flowBox"
- id="flowBox"
- style="height: 100%; width: 100%; overflow: hidden"
- >
- <div class="dnd-flow" @drop="onDrop">
- <VueFlow
- v-model:nodes="flowData.nodes"
- v-model:edges="flowData.edges"
- :apply-default="!editStatus && usableStatus"
- @dragover="onDragOver"
- @dragleave="onDragLeave"
- @node-click="nodeClick($event)"
- @edge-click="edgeClick($event)"
- >
- <MiniMap style="background-color: grey" />
- <template #edge-custom="props">
- <CustomConnectionLine v-bind="props" />
- </template>
- <template #connection-line="props">
- <CustomConnectionLine v-bind="props" />
- </template>
- <template #node-custom="props">
- <CustomNode v-bind="props" />
- </template>
- <DropzoneBackground
- :style="{
- backgroundColor: isDragOver ? '#e7f3ff' : 'transparent',
- transition: 'background-color 0.2s ease',
- }"
- >
- <p v-if="isDragOver">拖拽中</p>
- </DropzoneBackground>
- </VueFlow>
- <div
- :style="{
- width: flowBoxW - 20 + 'px',
- height: flowBoxH - 20 + 'px',
- }"
- ></div>
- </div>
- </div>
- <div class="detailInfo">
- <el-scrollbar>
- <div class="opBox">
- <el-button type="primary" @click="changeEditStatus">{{
- !editStatus ? "切换为工序信息编辑模式" : "切换为工序路线编辑模式"
- }}</el-button>
- <el-button @click="getPng">导出流程图 </el-button>
- </div>
- <!-- 工艺路线编辑模式 -->
- <div v-if="!editStatus && usableStatus">
- <div class="btns">
- <el-button type="primary" @click="saveFlow">保存</el-button>
- <el-button type="danger" v-if="cancelStatus" @click="cancelFlow"
- >取消</el-button
- >
- <el-button
- type="info"
- v-if="selectNode || selectLine"
- @click="deleteFlow"
- >删除</el-button
- >
- </div>
- </div>
- <!-- 工序信息编辑模式 -->
- <div v-else>
- <div v-if="currentProcess.id">
- <avue-form
- ref="formRef"
- :option="formOption"
- v-model="currentProcess"
- style="padding: 10px; background-color: transparent"
- >
- <template #tbomUrl>
- <FilesUpload
- v-model:src="currentProcess.tbomUrl"
- :show-tip="false"
- />
- </template>
- </avue-form>
- <div class="btns">
- <el-tooltip
- class="box-item"
- effect="dark"
- content="会同时保存现线路情况,请确认好变更"
- placement="bottom"
- >
- <el-button type="primary" @click="saveInfo"
- >保存工序详情</el-button
- >
- </el-tooltip>
- <el-button type="danger" @click="cancelInfo"
- >重置该工序详情</el-button
- >
- </div>
- <div class="editProcces">
- <el-button type="primary" @click="editProComponent"
- >编辑工序组件</el-button
- >
- </div>
- </div>
- <div v-else-if="!usableStatus" class="tipContent">
- 已绑定工序不可编辑线路情况
- </div>
- <div v-else class="tipContent">请选择工序</div>
- </div>
- </el-scrollbar>
- </div>
- </div>
- </div>
- </template>
- <script setup>
- import {
- Back,
- Download,
- Document,
- Delete,
- Bottom,
- Grid,
- } from "@element-plus/icons-vue";
- import _ from "lodash-es";
- import { VueFlow, useVueFlow } from "@vue-flow/core";
- import DropzoneBackground from "./components/DropzoneBackground/index.vue";
- import CustomConnectionLine from "./components/CustomConnectionLine/index.vue";
- import CustomNode from "./components/CustomNode/index.vue";
- import useDragAndDrop from "@/hooks/useDnD.js";
- import { MiniMap } from "@vue-flow/minimap";
- import { processTreeList } from "@/api/craft/process/index";
- import { useCommonStoreHook, useDictionaryStore } from "@/store";
- import {
- processesByRouteId,
- saveProcessInRoute,
- updateProcess,
- } from "@/api/craft/route/index";
- import { formOption } from "./bindConfig";
- import { ElMessage } from "element-plus";
- import { useScreenshot } from "./screenshot.ts";
- defineOptions({
- name: "bindProcess/:id/:prodtCode",
- });
- const { capture } = useScreenshot();
- const instance = useVueFlow();
- const { onConnect, addEdges, vueFlowRef, onEdgeUpdateEnd, applyEdgeChanges } =
- instance;
- const { onDragOver, onDrop, onDragLeave, isDragOver, onDragStart } =
- useDragAndDrop();
- const flowData = ref({ edges: [], nodes: [] });
- const flowDataCopy = ref({ edges: [], nodes: [] });
- const currentProcess = ref({});
- const selectNode = ref(null);
- const selectLine = ref(null);
- //true为可编辑线路
- const usableStatus = ref(true);
- provide("selectNode", selectNode);
- provide("currentProcess", currentProcess);
- provide("selectLine", selectLine);
- const edgeClick = (event) => {
- if (usableStatus.value == false && !editStatus.value) return;
- if (!editStatus.value) {
- selectLine.value = event.edge;
- selectNode.value = null;
- }
- };
- const nodeClick = (event) => {
- if (usableStatus.value == false && !editStatus.value) return;
- if (!editStatus.value) {
- selectNode.value = event.node;
- } else {
- currentProcess.value = event.node;
- }
- };
- //当使用回退时清空选择的node
- const handleKeydown = () => {
- if (selectNode.value != null) {
- selectNode.value = null;
- }
- if (selectLine.value != null) {
- selectLine.value = null;
- }
- };
- onConnect(addEdges);
- const getPng = () => {
- if (!vueFlowRef.value) {
- console.warn("VueFlow element not found");
- return;
- }
- capture(vueFlowRef.value, { shouldDownload: true });
- };
- const nodeType = ref("custom");
- const editStatus = ref(false);
- provide("editStatus", editStatus);
- const changeEditStatus = () => {
- editStatus.value = !editStatus.value;
- if (editStatus.value == false) {
- currentProcess.value = {};
- } else {
- selectNode.value = null;
- }
- };
- const router = useRouter();
- const route = useRoute();
- // 数据字典相关
- const { dicts } = useDictionaryStore();
- //获取画布盒子具体长宽
- const flowBoxH = ref(null);
- const flowBoxW = ref(null);
- const flowBoxScreen = () => {
- const flowBox = document.getElementById("flowBox");
- flowBoxH.value = flowBox.clientHeight;
- flowBoxW.value = flowBox.clientWidth;
- };
- // 顶部====================
- const back = () => {
- router.back();
- };
- const download = () => {};
- // 左侧工序树====================
- const activeNames = ref([0]);
- const list1 = ref([]);
- // 保存中间的工序列表
- const saveFlow = async () => {
- const { code } = await saveProcessInRoute({
- processRouteId: route.fullPath.split("/")[4],
- routeData: JSON.stringify({ ...flowData.value }),
- });
- if (code == "200") {
- ElMessage.success("保存成功");
- }
- loadProcessesFlow();
- };
- const cancelFlow = () => {
- flowData.value = JSON.parse(flowDataCopy.value);
- if (selectNode.value != null) {
- selectNode.value = null;
- }
- if (selectLine.value != null) {
- selectLine.value = null;
- }
- };
- const deleteFlow = () => {
- if (selectNode.value != null) {
- flowData.value.nodes.forEach((item, index) => {
- if (item.id == selectNode.value.id) {
- flowData.value.nodes.splice(index, 1);
- }
- });
- }
- if (selectLine.value != null) {
- flowData.value.edges.forEach((item, index) => {
- if (item.id == selectLine.value.id) {
- flowData.value.edges.splice(index, 1);
- }
- });
- }
- selectNode.value = null;
- selectLine.value = null;
- ElMessage.success("删除成功");
- };
- const saveInfo = async () => {
- flowData.value.nodes.forEach((item, index) => {
- if (item.id == currentProcess.value.id) {
- flowData.value.nodes[index] = currentProcess.value;
- }
- });
- saveFlow();
- reset();
- };
- const cancelInfo = () => {
- flowData.value.nodes.forEach((item, index) => {
- if (item.id == currentProcess.value.id) {
- currentProcess.value = flowData.value.nodes[index];
- }
- });
- };
- const loadTreeData = () => {
- processTreeList().then((res) => {
- list1.value = res.data ?? [];
- });
- };
- const cancelStatus = ref(true);
- //通过id获取现存储信息
- const loadProcessesFlow = async () => {
- const res = await processesByRouteId(route.fullPath.split("/")[4]);
- if (res.data) {
- if (res.data.routeData && res.data.routeData != "") {
- flowData.value = JSON.parse(res.data.routeData);
- flowDataCopy.value = res.data.routeData;
- cancelStatus.value = true;
- if (res.data.usable == 1) {
- usableStatus.value = false;
- }
- } else {
- cancelStatus.value = false;
- }
- } else {
- flowDataCopy.value = JSON.stringify(flowData.value);
- }
- };
- const formRef = ref(null);
- const reset = () => {
- currentProcess.value = {};
- editStatus.value = false;
- };
- const editProComponent = async () => {
- router.push({
- path: `/base/craftManagement/processCom/${route.fullPath.split("/")[4]}/${route.fullPath.split("/")[5]}`,
- });
- };
- // 全局=======
- onMounted(() => {
- loadTreeData();
- loadProcessesFlow();
- flowBoxScreen();
- window.addEventListener("keydown", handleKeydown);
- });
- onUnmounted(() => {
- window.removeEventListener("keydown", handleKeydown);
- });
- const getNameByDictType = (dictValue) => {
- let str = "";
- dicts?.workshop_section?.forEach((element) => {
- if (element?.dictValue === dictValue) {
- str = element?.dictLabel ?? "===";
- }
- });
- return str;
- };
- watch(
- () => flowData.value.edges,
- () => {
- flowData.value.edges.forEach((item) => {
- item.type = "custom";
- });
- }
- );
- </script>
- <style lang="scss" scoped>
- .binContainer {
- height: calc(100vh - 165px);
- background-color: #f5f7f9;
- // background-color: white;
- padding: 0;
- display: flex;
- }
- .btns {
- display: flex;
- justify-content: center;
- margin: 10px 0;
- }
- .header {
- height: 50px;
- display: flex;
- background-color: #f5f7f9;
- justify-content: space-between;
- align-items: center;
- border-bottom: 1px solid rgba(0, 0, 0, 0.1);
- }
- .processTree {
- width: 220px;
- height: 100%;
- border-right: 1px solid rgba(0, 0, 0, 0.1);
- .treeChild {
- background: #f2f2f2;
- padding: 20px 8px 10px 8px;
- .childItem {
- width: 100%;
- height: 28px;
- background: #ffffff;
- border-radius: 4px 4px 4px 4px;
- border: 1px solid rgba(35, 32, 50, 0.1);
- margin-bottom: 10px;
- text-align: center;
- }
- }
- }
- .flowBox {
- flex: 1;
- display: flex;
- justify-content: center;
- overflow-y: auto;
- .flowItem:hover {
- .flowDelete {
- visibility: visible;
- }
- }
- }
- .detailInfo {
- width: 320px;
- height: 100%;
- background-color: white;
- border-left: 1px solid rgba(0, 0, 0, 0.1);
- .opBox {
- border-bottom: 1px solid rgba(0, 0, 0, 0.1);
- padding: 0 20px;
- height: 150px;
- display: flex;
- flex-direction: column;
- justify-content: space-evenly;
- align-items: center;
- }
- .editProcces {
- display: flex;
- justify-content: center;
- margin-bottom: 15px;
- }
- }
- .title {
- line-height: 44px;
- color: #6f7991;
- font-size: 14px;
- font-weight: bold;
- text-align: left;
- margin-left: 20px;
- }
- .title2 {
- color: #232032;
- font-size: 14px;
- text-align: left;
- margin-left: 19px;
- }
- .tipContent {
- width: 100%;
- text-align: center;
- margin-top: 20px;
- color: #e6a23c;
- }
- </style>
- <style>
- .el-collapse-item__content {
- padding: 0;
- }
- </style>
|