From fba0df8cb9826bc7109906ac2fa8e376bd464df3 Mon Sep 17 00:00:00 2001 From: machine Date: Mon, 21 Oct 2024 22:46:04 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E8=AE=A2=E9=98=85=E5=8E=86=E5=8F=B2?= =?UTF-8?q?=E8=AE=B0=E5=BD=95=E4=B8=8D=E8=AF=B7=E6=B1=82=E5=90=8E=E7=AB=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/dialog/SubscribeHistoryDialog.vue | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/src/components/dialog/SubscribeHistoryDialog.vue b/src/components/dialog/SubscribeHistoryDialog.vue index 9dec2038..ffac94da 100644 --- a/src/components/dialog/SubscribeHistoryDialog.vue +++ b/src/components/dialog/SubscribeHistoryDialog.vue @@ -42,7 +42,6 @@ const progressText = ref('正在重新订阅...') // 调用API查询列表 async function loadHistory({ done }: { done: any }) { - console.log('🚀 ~ loadHistory ~ loadHistory:', loadHistory) // 如果正在加载中,直接返回 if (loading.value) { done('ok') @@ -53,15 +52,6 @@ async function loadHistory({ done }: { done: any }) { try { // 设置加载中 loading.value = true - const url = `subscribe/history/${props.type}` - const params = { - params: { - page: currentPage.value, - count: pageSize.value, - }, - } - console.log('history url:', url) - console.log('history params:', params) currData.value = await api.get(`subscribe/history/${props.type}`, { params: { page: currentPage.value,