修改文件名称

This commit is contained in:
GUjiYN 2024-02-05 21:19:10 +08:00
parent b48b2ab96a
commit 2c1edad772
3 changed files with 1 additions and 8 deletions

View File

@ -1,8 +1,7 @@
<template>
<div style="display: flex; justify-content: center; margin-top: 10vh; width: auto;">
<a-card style="width: 25vw; display: flex; justify-content: center; background-color: #f9f9f9">
<a-button style="margin-left: 15vw; font-size: medium" type="text" @click="$router.push('/emailregister')"><MailOutlined />邮箱注册</a-button>
<h1 style="display: flex; font-weight: bold">用户注册</h1>
<h1 style="display: flex; justify-content: center; font-weight: bold">用户注册</h1>
<a-form
:label-col="{ span: 8 }"
:model="formState"
@ -76,7 +75,6 @@
<script setup>
import {reactive} from 'vue';
import {MailOutlined} from "@ant-design/icons-vue";
import requests from '../public/request.js'
import {message} from "ant-design-vue";
import {useRouter} from "vue-router";

View File

@ -18,11 +18,6 @@ const router = createRouter({
name:'register',
component:()=>import('../LoginRegister/Register.vue')
},
{
path:'/emailregister',
name:'emailregister',
component:()=>import('../LoginRegister/EmailRegister.vue')
},
{
path:'/Manager',
name:'Manager',