diff --git a/src/pages/login/index.vue b/src/pages/login/index.vue index 4551296..d922778 100644 --- a/src/pages/login/index.vue +++ b/src/pages/login/index.vue @@ -2,7 +2,6 @@ import { reactive, ref } from 'vue'; import { useAuthStore } from '@/state/modules/auth'; import { onLoad } from '@dcloudio/uni-app'; - import BasicInput from '@/components/BasicInput/index.vue'; import { Toast } from '@/utils/uniApi'; import { router } from '@/utils/router'; const redirect = ref(undefined); @@ -16,6 +15,7 @@ }); const authStore = useAuthStore(); const submit = (e: any) => { + console.log(e); authStore.login(e.detail.value).then((res) => { Toast('登录成功', { duration: 1500 }); setTimeout(() => { @@ -32,12 +32,12 @@