Skip to content

Commit

Permalink
修复数据绑定错误
Browse files Browse the repository at this point in the history
  • Loading branch information
HalcyonAlcedo committed Jun 19, 2024
1 parent e1e2ad7 commit 7e5969c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/views/authentication/authForms/AuthLogin.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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]
}
Expand Down

0 comments on commit 7e5969c

Please sign in to comment.