From 7e5969cb25ffc71ec12bbb1253f9a4a30a68ab19 Mon Sep 17 00:00:00 2001 From: zyc404 Date: Thu, 20 Jun 2024 00:13:14 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E6=95=B0=E6=8D=AE=E7=BB=91?= =?UTF-8?q?=E5=AE=9A=E9=94=99=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/authentication/authForms/AuthLogin.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/views/authentication/authForms/AuthLogin.vue b/src/views/authentication/authForms/AuthLogin.vue index fcfcfb1..d686e5d 100644 --- a/src/views/authentication/authForms/AuthLogin.vue +++ b/src/views/authentication/authForms/AuthLogin.vue @@ -72,8 +72,8 @@ const getUserList = () => { request.post('/user/getLoginUserInfo', { bot: bot.value, qq: qq.value }) .then((response) => { if (response.data.status === 'success') { - qqList.value = response.data.data.bots - botList.value = response.data.data.masters + qqList.value = response.data.data.masters + botList.value = response.data.data.bots if (qq.value !== '' && response.data.data.masters.length > 0) { qq.value = response.data.data.masters[0] }