Merge branch 'feature-nxdev' of https://gitea.nxsir.cn/code/IM into feature-nxdev

This commit is contained in:
2025-12-28 22:13:35 +08:00
3 changed files with 10 additions and 5 deletions
+6 -3
View File
@@ -51,11 +51,13 @@ import { authService } from '@/services/auth'
import { useRouter } from 'vue-router'
import feather from 'feather-icons'
import IconInput from '@/components/IconInput.vue'
import { required, email, maxLength, minLength, helpers } from '@vuelidate/validators'
import { required, maxLength, helpers } from '@vuelidate/validators'
import useVuelidate from '@vuelidate/core'
import { useAuthStore } from '@/stores/auth'
const message = useMessage()
const router = useRouter()
const message = useMessage();
const router = useRouter();
const authStore = useAuthStore();
const loading = ref(false)
const form = reactive({
@@ -85,6 +87,7 @@ const handleLogin = async () => {
const res = await authService.login(form);
if(res.code === 0){
message.success('登陆成功。')
authStore.setLoginInfo(res.data.token, res.data.userInfo);
loading.value = false;
router.push('/index')
}else{