From b879f9985d83cacd38171061c9452d740f166764 Mon Sep 17 00:00:00 2001 From: huk Date: Sat, 13 Sep 2025 17:27:49 +0800 Subject: [PATCH] =?UTF-8?q?refactor(system):=20=E4=BF=AE=E6=94=B9=E7=94=A8?= =?UTF-8?q?=E6=88=B7=E5=85=B3=E8=81=94=E7=A7=9F=E6=88=B7=E5=88=97=E8=A1=A8?= =?UTF-8?q?=E8=8E=B7=E5=8F=96=E6=96=B9=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 将 gettenantList 函数的第二个参数从 0 修改为 2, --- src/views/system/user/tenant.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/system/user/tenant.vue b/src/views/system/user/tenant.vue index 314d262..85df59e 100644 --- a/src/views/system/user/tenant.vue +++ b/src/views/system/user/tenant.vue @@ -109,7 +109,7 @@ const getList = async () => { const userId = route.params && route.params.userId; if (userId) { loading.value = true; - const res = await gettenantList(userId as string, 0, params.value); + const res = await gettenantList(userId as string, 2, params.value); console.log(res.data); roles.value = res.data.records; total.value = res.data.total;