From 1123d32ac0852b11aaf998bf788817bba2b8d85b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=83=AD=E9=A3=9E?= Date: Thu, 29 May 2025 09:48:18 +0800 Subject: [PATCH] =?UTF-8?q?fix:=E4=BF=AE=E6=94=B9=E5=AF=BC=E5=87=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../stockOut/shipRequestReserve/index.vue | 21 ++++++++++--------- 1 file changed, 11 insertions(+), 10 deletions(-) diff --git a/src/views/stockOut/shipRequestReserve/index.vue b/src/views/stockOut/shipRequestReserve/index.vue index 6a1c461..9114749 100644 --- a/src/views/stockOut/shipRequestReserve/index.vue +++ b/src/views/stockOut/shipRequestReserve/index.vue @@ -158,8 +158,7 @@ 已分配标签信息
- 导出导出
@@ -425,6 +424,8 @@ const state: any = reactive({ IsCheck: 'N' }) const { + button_state6, + button_loading6, loading3, button_state4, button_state5, @@ -976,8 +977,8 @@ function selectable(row: any, index: any) { return true } function exportExcel() { - state.button_loading3 = true - state.button_state3 = true + state.button_state6 = true + state.button_loading6 = true if ( state.queryParams.params.SHIPREQUESTNAME != '' && state.queryParams.params.SHIPREQUESTNAME != null && @@ -992,20 +993,20 @@ function exportExcel() { }).then((res: any) => { if (res.data.length > 0) { exportDataToExcel(res.data, '备货导出' + state.queryParams.params.SHIPREQUESTNAME) - state.button_loading3 = false - state.button_state3 = false + state.button_state6 = false + state.button_loading6 = false } else { proxy.$ElMessage.warning('当前查询没有数据可以导出') - state.button_loading3 = false - state.button_state3 = false + state.button_state6 = false + state.button_loading6 = false } }) } else { ElMessageBox.alert('导出条件不能为空', '提醒框', { confirmButtonText: 'OK' }) - state.button_loading3 = false - state.button_state3 = false + state.button_state6 = false + state.button_loading6 = false } }