From ed847962aafe7de38896aefdf2a7b3948374507e Mon Sep 17 00:00:00 2001 From: MoQingYu Date: Thu, 13 Mar 2025 14:38:27 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E5=AF=BC=E5=87=BA=E5=8A=9F?= =?UTF-8?q?=E8=83=BD444?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../components/global/m_table/src/m_table.vue | 4 +- backmanage/src/views/betRecord/index.vue | 39 +++++++++++++++++-- .../views/person/records/ChangeRealBet.vue | 31 +++++++++++++-- .../src/views/person/records/changeGold.vue | 33 ++++++++++++++-- 4 files changed, 94 insertions(+), 13 deletions(-) diff --git a/backmanage/src/components/global/m_table/src/m_table.vue b/backmanage/src/components/global/m_table/src/m_table.vue index 8d42faf..69743b4 100644 --- a/backmanage/src/components/global/m_table/src/m_table.vue +++ b/backmanage/src/components/global/m_table/src/m_table.vue @@ -353,7 +353,7 @@ const handleFetchDataAAA = debounce(async (parama = {}) => { if (!handleLoadDownloadData) return; - loading.value = true; + export_loading.value = true; try { const response: any = await handleLoadDownloadData(param); // const response: any = await request.post(`/event/export-event-details`, param, { responseType: 'blob' }) @@ -363,7 +363,7 @@ const handleFetchDataAAA = debounce(async (parama = {}) => { const type = error ? "success" : "error"; ElMessage({ type, message }); } finally { - loading.value = false; + export_loading.value = false; } }, 300); diff --git a/backmanage/src/views/betRecord/index.vue b/backmanage/src/views/betRecord/index.vue index 161b75a..a4ddaef 100644 --- a/backmanage/src/views/betRecord/index.vue +++ b/backmanage/src/views/betRecord/index.vue @@ -1,8 +1,8 @@