From c377bb99594ac49af2da64c4e09ab830983138a6 Mon Sep 17 00:00:00 2001 From: Huang <596417202@qq.com> Date: Mon, 20 Jun 2022 11:57:43 +0800 Subject: [PATCH] =?UTF-8?q?fix-=20BaseInput=E7=BB=84=E4=BB=B6=E5=9C=A8?= =?UTF-8?q?=E5=B0=8F=E7=A8=8B=E5=BA=8F=E8=A1=A8=E5=8D=95=E6=97=A0=E6=95=B0?= =?UTF-8?q?=E6=8D=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/login/index.vue | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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 @@