diff --git a/src/views/home/index.vue b/src/views/home/index.vue index 4fb1ea7..0442087 100644 --- a/src/views/home/index.vue +++ b/src/views/home/index.vue @@ -30,9 +30,9 @@ flex-direction: column; > .bottom-view { flex: 1; - // background-color: #fff; overflow: hidden; - display: flex; + // background-color: #fff; + // display: flex; } } } diff --git a/src/views/login/login.vue b/src/views/login/login.vue index df526e2..7a981e9 100644 --- a/src/views/login/login.vue +++ b/src/views/login/login.vue @@ -99,7 +99,7 @@ } const onVerifyCode = (code: string) => { console.log(code) - router.push({ name: 'home' }) + router.push({ name: 'mainInput' }) } diff --git a/src/views/nuic/index.vue b/src/views/nuic/index.vue index 733f024..bdb7c66 100644 --- a/src/views/nuic/index.vue +++ b/src/views/nuic/index.vue @@ -37,14 +37,14 @@ const active = computed(() => Number(route.query.index || 0)) const list = markRaw([nuic1, nuic2, nuic3]) const onClose = () => { - router.push({ name: 'home' }) + router.push({ name: 'mainInput' }) } const onNext = () => { const index = active.value + 1 if (index < list.length) { router.push({ query: { index } }) } else { - router.push({ name: 'home' }) + router.push({ name: 'mainInput' }) } } diff --git a/src/views/nuic/nuic-1.vue b/src/views/nuic/nuic-1.vue index 7ee1525..feaa532 100644 --- a/src/views/nuic/nuic-1.vue +++ b/src/views/nuic/nuic-1.vue @@ -17,7 +17,7 @@ const router = useRouter() const emit = defineEmits(['next']) const onSkip = () => { - router.push({ name: 'home' }) + router.push({ name: 'mainInput' }) }