From b4d515f2ecb527be231b58e04f77bf8784fc6d79 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=B8=B8=E7=86=9F=E5=90=B4=E5=BD=A6=E7=A5=96?= Date: Sat, 1 Nov 2025 12:57:21 +0800 Subject: [PATCH] =?UTF-8?q?=E5=AF=BC=E5=87=BA=E6=8C=89=E9=92=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/modules/automatedWarehouse/agvTask.vue | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/views/modules/automatedWarehouse/agvTask.vue b/src/views/modules/automatedWarehouse/agvTask.vue index 38a7ec9..0d7425e 100644 --- a/src/views/modules/automatedWarehouse/agvTask.vue +++ b/src/views/modules/automatedWarehouse/agvTask.vue @@ -565,7 +565,7 @@ export default { // 处理展开行变化 handleExpandChange(row, expandedRows) { // 展开时加载明细数据 - if (!row.details || row.details.length === 0) { + // if (!row.details || row.details.length === 0) { getTransportTaskDetails(row.taskNo).then(({data}) => { if (data && data.code === 0) { // 使用Vue.set确保响应式更新 @@ -577,7 +577,7 @@ export default { console.error('获取任务明细失败:', error) this.$message.error('获取任务明细失败') }) - } + // } }, // 获取状态文本 @@ -763,9 +763,9 @@ export default { cancelButtonText: '取消', type: 'warning' }).then(() => { - const params = { + const params = { site: row.site, - taskNo: row.taskNo + taskNo: row.taskNo }; cancelTuskTaskApi(params).then(({data}) => {