remove username search for console user list page

This commit is contained in:
RockYang
2023-09-05 17:52:46 +08:00
parent 0ac732a3a3
commit b1bed59be2
4 changed files with 8 additions and 8 deletions

View File

@@ -66,9 +66,9 @@ const password = ref(process.env.VUE_APP_PASS);
checkSession().then(() => {
if (isMobile()) {
router.replace('mobile')
router.push('mobile')
} else {
router.replace('chat')
router.push('chat')
}
}).catch(() => {
})