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 @@