123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864 |
- <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-select-->
- <!-- v-model="list1SearchGroupDictKey"-->
- <!-- placeholder="搜索工序类型"-->
- <!-- clearable-->
- <!-- filterable-->
- <!-- >-->
- <!-- <el-option-->
- <!-- v-for="dict in dictsArray"-->
- <!-- :label="dict.dictLabel"-->
- <!-- :value="dict.dictValue"-->
- <!-- />-->
- <!-- </el-select>-->
- <el-input
- v-model="list1SearchStr"
- placeholder="搜索工序名称"
- clearable
- />
- <el-collapse v-model="activeNames">
- <el-collapse-item
- v-for="(pProcess, pIndex) in showList"
- :key="pProcess.workSection"
- :name="pIndex"
- >
- <template #title>
- <div class="title2">
- {{ pProcess.workSectionStr }}
- </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="nodes"
- v-model:edges="edges"
- :apply-default="!editStatus && usableStatus"
- @dragover="onDragOver"
- @dragleave="onDragLeave"
- @node-click="nodeClick($event)"
- @edge-click="edgeClick($event)"
- @nodes-change="(data) => nodesChange(data)"
- @edges-change="(data) => edgesChange(data)"
- @node-drag-start="nodeDragStart"
- @node-drag-stop="nodeDragStop"
- >
- <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>
- <Panel class="process-panel" position="top-right">
- <div class="layout-panel">
- <button title="蛇形排列" @click="convertToSnakeLayout">
- <PannelIcon name="liucheng" />
- </button>
- <button title="整齐排列" @click="layoutGraph('TB')">
- <PannelIcon name="vertical" />
- </button>
- <button title="重置" @click="cancer">
- <PannelIcon name="chongzhi" />
- </button>
- <button title="撤回" @click="goBack">
- <PannelIcon name="fanhui" />
- </button>
- </div>
- </Panel>
- </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="success" @click="changeStyle">
- 按钮风格切换
- </el-button>
- <el-button type="primary" @click="changeEditStatus">{{
- !editStatus ? "切换为工序信息编辑模式" : "切换为工序路线编辑模式"
- }}</el-button>
- <el-button @click="getPng">导出流程图 </el-button>
- </div>
- <!-- 工艺路线编辑模式 -->
- <div v-if="!editStatus && usableStatus">
- <div class="btns">
- <div>
- <el-button
- type="primary"
- @click="saveFlow"
- :class="styleStatus == true ? 'showStyle' : ''"
- >
- <span :class="styleStatus == true ? 'fontStyle' : ''"
- >保</span
- >
- <span :class="styleStatus == true ? 'fontStyle' : ''">
-
- </span>
- <span :class="styleStatus == true ? 'fontStyle' : ''"
- >存</span
- >
- </el-button>
- </div>
- <div>
- <el-button
- type="danger"
- v-if="false"
- :class="styleStatus == true ? 'showStyle' : ''"
- @click="cancer"
- >
- <span :class="styleStatus == true ? 'fontStyle' : ''"
- >回</span
- >
- <span :class="styleStatus == true ? 'fontStyle' : ''">
-
- </span>
- <span :class="styleStatus == true ? 'fontStyle' : ''"
- >退</span
- >
- </el-button>
- </div>
- <div>
- <el-button
- type="info"
- v-if="selectNode || selectLine"
- :class="styleStatus == true ? 'showStyle' : ''"
- @click="deleteFlow"
- >
- <span :class="styleStatus == true ? 'fontStyle' : ''"
- >删</span
- >
- <span :class="styleStatus == true ? 'fontStyle' : ''">
-
- </span>
- <span :class="styleStatus == true ? 'fontStyle' : ''"
- >除</span
- ></el-button
- >
- </div>
- </div>
- </div>
- <!-- 工序信息编辑模式 -->
- <div v-else>
- <div v-if="currentProcess.id">
- <avue-form
- ref="formRef"
- :option="formOption"
- v-model="currentProcess"
- :key="avueKey"
- style="padding: 10px; background-color: transparent"
- >
- <template #tbomUrl>
- <FilesUpload
- v-model:src="currentProcess.tbomUrl"
- :show-tip="false"
- />
- </template>
- <template #customFieldName>
- <el-select
- v-model="customFieldNameValues"
- multiple
- default-first-option
- :reserve-keyword="false"
- placeholder="请选择名称"
- >
- <el-option
- v-for="item in customFieldOptions"
- :key="item.value"
- :label="item.value"
- :value="item.value"
- />
- </el-select>
- </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 { useDebounceFn } from "@vueuse/core";
- import { VueFlow, useVueFlow, Panel } 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";
- import { useLayout } from "@/hooks/useLayout";
- import { initialEdges, initialNodes } from "./initial-elements";
- import { useSnakeLayoutHook } from "@/hooks/vueflowHooks";
- defineOptions({
- name: "bindProcess/:id/:prodtCode",
- });
- const styleStatus = ref(false);
- const changeStyle = () => {
- styleStatus.value = !styleStatus.value;
- };
- const addHistory = () => {
- historyList.value.push(JSON.parse(JSON.stringify(flowData)));
- };
- const resetHistory = () => {
- historyList.value = [];
- historyList.value.push(JSON.parse(JSON.stringify(flowData)));
- };
- const nodesChange = (data) => {
- if (data.length > 0) {
- if (data[0].type == "add" || data.type == "remove") {
- addHistory();
- }
- }
- };
- const edgesChange = (data) => {
- if (data.length > 0) {
- if (data[0].type == "add" || data[0].type == "remove") {
- addHistory();
- }
- }
- };
- const nodeDragStart = () => {};
- const nodeDragStop = () => {
- setTimeout(() => {
- addHistory();
- }, 0);
- };
- const goBack = () => {
- if (historyList.value.length > 1) {
- flowData.nodes = historyList.value[historyList.value.length - 2].nodes;
- flowData.edges = historyList.value[historyList.value.length - 2].edges;
- historyList.value.pop();
- } else {
- ElMessage.warning("已是初始线路");
- }
- };
- const historyList = ref([]);
- const { capture } = useScreenshot();
- const { layout } = useLayout();
- const instance = useVueFlow();
- const {
- onConnect,
- addEdges,
- vueFlowRef,
- onEdgeUpdateEnd,
- applyEdgeChanges,
- fitView,
- } = instance;
- const { onDragOver, onDrop, onDragLeave, isDragOver, onDragStart } =
- useDragAndDrop();
- const flowData = reactive({ 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 customFieldNameValues = ref([]);
- const customFieldOptions = ref([]);
- function isJSON(str) {
- if (typeof str !== "string") {
- return false;
- }
- try {
- JSON.parse(str);
- return true;
- } catch (e) {
- return false;
- }
- }
- const avueKey = ref(false);
- const nodeClick = (event) => {
- // 所有的批量报工设置为1
- event.node.batchReport = 1;
- if (usableStatus.value == false && !editStatus.value) return;
- if (!editStatus.value) {
- selectNode.value = event.node;
- } else {
- currentProcess.value = {};
- //让组件重新加载
- avueKey.value = !avueKey.value;
- currentProcess.value = event.node;
- // 设置自定义字段名称的选项内容等
- if (
- event.node.customFieldName &&
- isJSON(event.node.customFieldName) &&
- JSON.parse(event.node.customFieldName).length > 0
- ) {
- customFieldOptions.value = JSON.parse(event.node.customFieldName);
- customFieldNameValues.value = customFieldOptions.value
- .filter((item) => {
- return item.isSelected;
- })
- .map((item) => item.value);
- }
- }
- };
- //当使用回退时清空选择的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 list1SearchStr = ref("");
- const list1SearchGroupDictKey = ref("");
- const showList = computed(() => {
- let array = _.cloneDeep(list1.value);
- // if (list1SearchGroupDictKey.value) {
- // array = array.filter((item) => {
- // return item.workSection === list1SearchGroupDictKey.value;
- // });
- // }
- array.forEach((item) => {
- item.baseOperationList = item.baseOperationList.filter((op) => {
- return op.operationName.includes(list1SearchStr.value);
- });
- });
- return array;
- });
- // 保存中间的工序列表
- const saveFlow = async () => {
- const { code } = await saveProcessInRoute({
- processRouteId: route.fullPath.split("/")[4],
- routeData: JSON.stringify({ ...flowData }),
- });
- if (code == "200") {
- ElMessage.success("保存成功");
- }
- loadProcessesFlow();
- };
- const cancer = () => {
- ElMessageBox.confirm("取消的话会清空本次操作记录,确定吗?", "回退", {
- confirmButtonText: "确定",
- cancelButtonText: "取消",
- type: "warning",
- })
- .then(() => {
- cancelFlow();
- })
- .catch(() => {});
- };
- const cancelFlow = () => {
- flowData.nodes = flowDataCopy.value.nodes;
- flowData.edges = flowDataCopy.value.edges;
- if (selectNode.value != null) {
- selectNode.value = null;
- }
- if (selectLine.value != null) {
- selectLine.value = null;
- }
- resetHistory();
- };
- const deleteFlow = () => {
- if (selectNode.value != null) {
- flowData.nodes.forEach((item, index) => {
- if (item.id == selectNode.value.id) {
- flowData.nodes.splice(index, 1);
- }
- });
- }
- if (selectLine.value != null) {
- flowData.edges.forEach((item, index) => {
- if (item.id == selectLine.value.id) {
- flowData.edges.splice(index, 1);
- }
- });
- }
- selectNode.value = null;
- selectLine.value = null;
- ElMessage.success("删除成功");
- addHistory();
- };
- const saveInfo = async () => {
- // 处理currentProcess的自定义对象名称字段,如果customFieldNameValues在customFieldOptions中存在,则设置isSelected为true,否则设置为false,最后转为json
- const customFieldArr = [];
- customFieldOptions.value.forEach((item) => {
- let obj = {
- value: item.value,
- isSelected: customFieldNameValues.value.includes(item.value),
- };
- customFieldArr.push(obj);
- });
- currentProcess.value.customFieldName = JSON.stringify(customFieldArr);
- flowData.nodes.forEach((item, index) => {
- if (item.id == currentProcess.value.id) {
- flowData.nodes[index] = currentProcess.value;
- }
- });
- saveFlow();
- currentProcess.value = {};
- };
- const cancelInfo = () => {
- flowData.nodes.forEach((item, index) => {
- if (item.id == currentProcess.value.id) {
- currentProcess.value = flowData.nodes[index];
- }
- });
- };
- const loadTreeData = () => {
- // processTreeList(list1SearchGroupDictKey.value).then((res) => {
- // list1.value = res.data ?? [];
- // filterDicts();
- // });
- processTreeList().then((res) => {
- list1.value = res.data ?? [];
- filterDicts();
- });
- };
- // 用于搜索的数据字典数组
- const dictsArray = ref([]);
- // 从dicts?.workshop_section筛选出list1中返回的字典值,用于最上方的选择框
- const filterDicts = () => {
- dictsArray.value = dicts?.process_type ?? [];
- // const workSectionArray = list1.value.map((item) => {
- // return item.workSection;
- // });
- //
- // const arr = [];
- // dicts?.workshop_section?.forEach((item) => {
- // if (workSectionArray.includes(item?.dictValue)) {
- // arr.push(_.cloneDeep(item));
- // }
- // });
- // dictsArray.value = arr;
- };
- 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 != "") {
- let jsonData = JSON.parse(res.data.routeData);
- flowData.nodes = jsonData.nodes;
- flowData.edges = jsonData.edges;
- flowDataCopy.value = JSON.parse(JSON.stringify(jsonData));
- cancelStatus.value = true;
- if (res.data.usable == 1) {
- usableStatus.value = false;
- }
- setTimeout(() => {
- resetHistory();
- }, 0);
- } else {
- cancelStatus.value = false;
- }
- } else {
- flowDataCopy.value = JSON.parse(JSON.stringify(flowData));
- }
- };
- const formRef = ref(null);
- const reset = () => {
- currentProcess.value = {};
- editStatus.value = false;
- };
- const editProComponent = async () => {
- router.push({
- path: `/base/craftManagement/processCom/${currentProcess.value.operationId}/${route.fullPath.split("/")[5]}/${route.fullPath.split("/")[4]}`,
- });
- };
- // 全局=======
- onMounted(async () => {
- await loadTreeData();
- await 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.edges,
- () => {
- flowData.edges.forEach((item) => {
- item.type = "custom";
- });
- }
- );
- watch(
- () => list1SearchGroupDictKey.value,
- () => {
- loadTreeData();
- }
- );
- const { nodes } = toRefs(flowData); //ref(initialNodes);
- const { edges } = toRefs(flowData); //ref(initialEdges);
- async function layoutGraph(direction) {
- nodes.value = layout(nodes.value, edges.value, direction);
- nextTick(() => {
- fitView();
- addHistory();
- });
- }
- // 转换为蛇形布局
- const convertToSnakeLayout = () => {
- nodes.value = useSnakeLayoutHook(nodes.value);
- addHistory();
- };
- </script>
- <style lang="scss" scoped>
- .showStyle {
- transform: translateY(10px) rotate(90deg);
- }
- .fontStyle {
- transform: rotate(-90deg);
- }
- .binContainer {
- height: calc(100vh - 165px);
- background-color: #f5f7f9;
- // background-color: white;
- padding: 0;
- display: flex;
- }
- .btns {
- display: flex;
- justify-content: center;
- margin: 10px 0;
- div {
- width: 80px;
- }
- }
- .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;
- }
- .process-panel,
- .layout-panel {
- display: flex;
- gap: 10px;
- }
- .process-panel {
- background-color: #2d3748;
- padding: 10px;
- border-radius: 8px;
- box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
- display: flex;
- flex-direction: column;
- }
- .process-panel button {
- border: none;
- cursor: pointer;
- background-color: #4a5568;
- border-radius: 8px;
- color: white;
- box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
- }
- .process-panel button {
- font-size: 16px;
- width: 40px;
- height: 40px;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .checkbox-panel {
- display: flex;
- align-items: center;
- gap: 10px;
- }
- .process-panel button:hover,
- .layout-panel button:hover {
- background-color: #2563eb;
- transition: background-color 0.2s;
- }
- .process-panel label {
- color: white;
- font-size: 12px;
- }
- .stop-btn svg {
- display: none;
- }
- .stop-btn:hover svg {
- display: block;
- }
- .stop-btn:hover .spinner {
- display: none;
- }
- .spinner {
- border: 3px solid #f3f3f3;
- border-top: 3px solid #2563eb;
- border-radius: 50%;
- width: 10px;
- height: 10px;
- animation: spin 1s linear infinite;
- }
- @keyframes spin {
- 0% {
- transform: rotate(0deg);
- }
- 100% {
- transform: rotate(360deg);
- }
- }
- </style>
- <style>
- .el-collapse-item__content {
- padding: 0;
- }
- </style>
|