feat: 登录页面

This commit is contained in:
renxiaodong
2025-06-20 06:10:15 -04:00
parent 1641320847
commit 54f620d92f
12 changed files with 328 additions and 287 deletions

View File

@ -1,8 +1,8 @@
/*
* @Author: 田鑫
* @Date: 2023-03-05 18:14:17
* @LastEditors: 田鑫
* @LastEditTime: 2023-03-05 19:20:40
* @LastEditors: Please set LastEditors
* @LastEditTime: 2025-06-20 05:35:27
* @Description:
*/
import { createRouter, createWebHistory } from 'vue-router';
@ -20,7 +20,7 @@ const router = createRouter({
routes: [
{
path: '/login',
name: 'login',
name: 'UserLogin',
component: () => import('@/views/components/login'),
},
{
@ -30,7 +30,7 @@ const router = createRouter({
},
{
path: '/',
name: 'dataEngine',
name: 'Home',
redirect: '/dataEngine/dataEngine/hotTranslation',
children: [...appRoutes, REDIRECT_MAIN, NOT_FOUND_ROUTE],
},