From 0c229d95d6442820b4d2d2cd5bcdf3ce1cf069b6 Mon Sep 17 00:00:00 2001 From: ZengTao <2773468879@qq.com> Date: 星期三, 16 四月 2025 15:39:22 +0800 Subject: [PATCH] Merge branch 'master' of http://10.153.19.25:10105/r/YiWuProject --- UI-Project/src/views/hollow/hollowequipmenttwo.vue | 12 ++++++------ 1 files changed, 6 insertions(+), 6 deletions(-) diff --git a/UI-Project/src/views/hollow/hollowequipmenttwo.vue b/UI-Project/src/views/hollow/hollowequipmenttwo.vue index 972520b..988c235 100644 --- a/UI-Project/src/views/hollow/hollowequipmenttwo.vue +++ b/UI-Project/src/views/hollow/hollowequipmenttwo.vue @@ -567,7 +567,7 @@ }; const handlePageChange2 = (newPage) => { currentPage2.value = newPage; - fetchFlowBind(currentRow.projectNumber, currentRow.layer, currentPage2.value); + fetchFlowBind(currentRow.flowCardId, currentPage2.value); }; const handleMessage = (data) => { try { @@ -666,10 +666,10 @@ // 缂虹墖璇︽儏 const handleBindRack = (row) => { currentPage2.value = 1; - const { projectNumber, layer } = row; - currentRow.projectNumber = row.projectNumber; + const { flowCardId } = row; + currentRow.flowCardId = row.flowCardId; dialogFormVisibleb.value = true; - fetchFlowBind(projectNumber, layer,currentPage2.value); + fetchFlowBind(flowCardId,currentPage2.value); }; // 棰嗗彇浠诲姟 const handletake = (row) => { @@ -885,9 +885,9 @@ }; }); }; -const fetchFlowBind = async (flowCardId, layer, page) => { +const fetchFlowBind = async (flowCardId, page) => { try { - var url="/hollowGlass/hollowGlassRelationInfo/queryLackByFlowCard?flowCardId="+flowCardId + "&layer=" + layer; + var url="/hollowGlass/hollowGlassRelationInfo/queryLackByFlowCard?flowCardId="+flowCardId + "&layer=" + 1; const response = await request.post(url) if (response.code == 200) { tableDatac.value = response.data[page]; -- Gitblit v1.8.0