编写页头组件
This commit is contained in:
parent
f2e5df0e5e
commit
b9ce5813fd
62
README.md
62
README.md
@ -7,10 +7,60 @@
|
|||||||
|
|
||||||
# 开发进度
|
# 开发进度
|
||||||
|
|
||||||
- [ ] 项目基本框架
|
## 登录界面
|
||||||
- [ ] 基本组件设计(header、aside、main)
|
|
||||||
- [ ] 基本组件布局
|
- [x] 基本组件布局
|
||||||
......
|
- [x] 基本方法
|
||||||
- [ ] 页面路由
|
- [ ] 对接后端
|
||||||
- [ ] 数据请求
|
- [ ] 优化界面样式
|
||||||
|
|
||||||
|
## 主页
|
||||||
|
|
||||||
|
### header
|
||||||
|
|
||||||
|
- [x] 基本界面
|
||||||
|
- [x] 基本方法
|
||||||
|
- [ ] 优化界面样式
|
||||||
|
|
||||||
|
### aside
|
||||||
|
|
||||||
|
- [ ] 基本界面
|
||||||
|
- [ ] 基本方法
|
||||||
|
- [ ] 优化界面样式
|
||||||
|
|
||||||
|
### footer
|
||||||
|
|
||||||
|
- [ ] 基本界面
|
||||||
|
- [ ] 基本方法
|
||||||
|
- [ ] 优化界面样式
|
||||||
|
|
||||||
|
### main
|
||||||
|
|
||||||
|
- [ ] 基本界面
|
||||||
|
- [ ] 基本方法
|
||||||
|
- [ ] 优化界面样式
|
||||||
|
|
||||||
|
## 内容页面
|
||||||
|
|
||||||
|
### 管理员
|
||||||
|
|
||||||
|
- [ ] 数据展示
|
||||||
|
- [ ] 基本功能
|
||||||
|
- [ ] 基本方法
|
||||||
|
- [ ] 接入后端
|
||||||
|
|
||||||
|
### 饲养员
|
||||||
|
|
||||||
|
- [ ] 数据展示
|
||||||
|
- [ ] 基本功能
|
||||||
|
- [ ] 基本方法
|
||||||
|
- [ ] 接入后端
|
||||||
|
|
||||||
|
### 兽医
|
||||||
|
|
||||||
|
- [ ] 数据展示
|
||||||
|
- [ ] 基本功能
|
||||||
|
- [ ] 基本方法
|
||||||
|
- [ ] 接入后端
|
||||||
|
|
||||||
|
|
||||||
|
14
index.html
14
index.html
@ -1,13 +1,13 @@
|
|||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html lang="zh-CN">
|
<html lang="zh-CN">
|
||||||
<head>
|
<head>
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<link rel="icon" href="/favicon.ico">
|
<link rel="icon" href="/favicon.ico">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
<title>Vite App</title>
|
<title>动物信息管理系统</title>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div id="app"></div>
|
<div id="app"></div>
|
||||||
<script type="module" src="/src/main.js"></script>
|
<script type="module" src="/src/main.js"></script>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
686
package-lock.json
generated
686
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@ -9,7 +9,10 @@
|
|||||||
"preview": "vite preview"
|
"preview": "vite preview"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
"@element-plus/icons-vue": "^2.3.1",
|
||||||
"element-plus": "^2.7.3",
|
"element-plus": "^2.7.3",
|
||||||
|
"unplugin-icons": "^0.19.0",
|
||||||
|
"vite-plugin-inspect": "^0.8.4",
|
||||||
"vue": "^3.4.21",
|
"vue": "^3.4.21",
|
||||||
"vue-router": "^4.3.2"
|
"vue-router": "^4.3.2"
|
||||||
},
|
},
|
||||||
|
@ -1,44 +0,0 @@
|
|||||||
<script setup>
|
|
||||||
defineProps({
|
|
||||||
msg: {
|
|
||||||
type: String,
|
|
||||||
required: true
|
|
||||||
}
|
|
||||||
})
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<template>
|
|
||||||
<div class="greetings">
|
|
||||||
<h1 class="green">{{ msg }}</h1>
|
|
||||||
<h3>
|
|
||||||
You’ve successfully created a project with
|
|
||||||
<a href="https://vitejs.dev/" target="_blank" rel="noopener">Vite</a> +
|
|
||||||
<a href="https://vuejs.org/" target="_blank" rel="noopener">Vue 3</a>.
|
|
||||||
</h3>
|
|
||||||
</div>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<style scoped>
|
|
||||||
h1 {
|
|
||||||
font-weight: 500;
|
|
||||||
font-size: 2.6rem;
|
|
||||||
position: relative;
|
|
||||||
top: -10px;
|
|
||||||
}
|
|
||||||
|
|
||||||
h3 {
|
|
||||||
font-size: 1.2rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.greetings h1,
|
|
||||||
.greetings h3 {
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
@media (min-width: 1024px) {
|
|
||||||
.greetings h1,
|
|
||||||
.greetings h3 {
|
|
||||||
text-align: left;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
</style>
|
|
@ -1,88 +0,0 @@
|
|||||||
<script setup>
|
|
||||||
import WelcomeItem from './WelcomeItem.vue'
|
|
||||||
import DocumentationIcon from './icons/IconDocumentation.vue'
|
|
||||||
import ToolingIcon from './icons/IconTooling.vue'
|
|
||||||
import EcosystemIcon from './icons/IconEcosystem.vue'
|
|
||||||
import CommunityIcon from './icons/IconCommunity.vue'
|
|
||||||
import SupportIcon from './icons/IconSupport.vue'
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<template>
|
|
||||||
<WelcomeItem>
|
|
||||||
<template #icon>
|
|
||||||
<DocumentationIcon />
|
|
||||||
</template>
|
|
||||||
<template #heading>Documentation</template>
|
|
||||||
|
|
||||||
Vue’s
|
|
||||||
<a href="https://vuejs.org/" target="_blank" rel="noopener">official documentation</a>
|
|
||||||
provides you with all information you need to get started.
|
|
||||||
</WelcomeItem>
|
|
||||||
|
|
||||||
<WelcomeItem>
|
|
||||||
<template #icon>
|
|
||||||
<ToolingIcon />
|
|
||||||
</template>
|
|
||||||
<template #heading>Tooling</template>
|
|
||||||
|
|
||||||
This project is served and bundled with
|
|
||||||
<a href="https://vitejs.dev/guide/features.html" target="_blank" rel="noopener">Vite</a>. The
|
|
||||||
recommended IDE setup is
|
|
||||||
<a href="https://code.visualstudio.com/" target="_blank" rel="noopener">VSCode</a> +
|
|
||||||
<a href="https://github.com/johnsoncodehk/volar" target="_blank" rel="noopener">Volar</a>. If
|
|
||||||
you need to test your components and web pages, check out
|
|
||||||
<a href="https://www.cypress.io/" target="_blank" rel="noopener">Cypress</a> and
|
|
||||||
<a href="https://on.cypress.io/component" target="_blank" rel="noopener"
|
|
||||||
>Cypress Component Testing</a
|
|
||||||
>.
|
|
||||||
|
|
||||||
<br />
|
|
||||||
|
|
||||||
More instructions are available in <code>README.md</code>.
|
|
||||||
</WelcomeItem>
|
|
||||||
|
|
||||||
<WelcomeItem>
|
|
||||||
<template #icon>
|
|
||||||
<EcosystemIcon />
|
|
||||||
</template>
|
|
||||||
<template #heading>Ecosystem</template>
|
|
||||||
|
|
||||||
Get official tools and libraries for your project:
|
|
||||||
<a href="https://pinia.vuejs.org/" target="_blank" rel="noopener">Pinia</a>,
|
|
||||||
<a href="https://router.vuejs.org/" target="_blank" rel="noopener">Vue Router</a>,
|
|
||||||
<a href="https://test-utils.vuejs.org/" target="_blank" rel="noopener">Vue Test Utils</a>, and
|
|
||||||
<a href="https://github.com/vuejs/devtools" target="_blank" rel="noopener">Vue Dev Tools</a>. If
|
|
||||||
you need more resources, we suggest paying
|
|
||||||
<a href="https://github.com/vuejs/awesome-vue" target="_blank" rel="noopener">Awesome Vue</a>
|
|
||||||
a visit.
|
|
||||||
</WelcomeItem>
|
|
||||||
|
|
||||||
<WelcomeItem>
|
|
||||||
<template #icon>
|
|
||||||
<CommunityIcon />
|
|
||||||
</template>
|
|
||||||
<template #heading>Community</template>
|
|
||||||
|
|
||||||
Got stuck? Ask your question on
|
|
||||||
<a href="https://chat.vuejs.org" target="_blank" rel="noopener">Vue Land</a>, our official
|
|
||||||
Discord server, or
|
|
||||||
<a href="https://stackoverflow.com/questions/tagged/vue.js" target="_blank" rel="noopener"
|
|
||||||
>StackOverflow</a
|
|
||||||
>. You should also subscribe to
|
|
||||||
<a href="https://news.vuejs.org" target="_blank" rel="noopener">our mailing list</a> and follow
|
|
||||||
the official
|
|
||||||
<a href="https://twitter.com/vuejs" target="_blank" rel="noopener">@vuejs</a>
|
|
||||||
twitter account for latest news in the Vue world.
|
|
||||||
</WelcomeItem>
|
|
||||||
|
|
||||||
<WelcomeItem>
|
|
||||||
<template #icon>
|
|
||||||
<SupportIcon />
|
|
||||||
</template>
|
|
||||||
<template #heading>Support Vue</template>
|
|
||||||
|
|
||||||
As an independent project, Vue relies on community backing for its sustainability. You can help
|
|
||||||
us by
|
|
||||||
<a href="https://vuejs.org/sponsor/" target="_blank" rel="noopener">becoming a sponsor</a>.
|
|
||||||
</WelcomeItem>
|
|
||||||
</template>
|
|
@ -1,87 +0,0 @@
|
|||||||
<template>
|
|
||||||
<div class="item">
|
|
||||||
<i>
|
|
||||||
<slot name="icon"></slot>
|
|
||||||
</i>
|
|
||||||
<div class="details">
|
|
||||||
<h3>
|
|
||||||
<slot name="heading"></slot>
|
|
||||||
</h3>
|
|
||||||
<slot></slot>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<style scoped>
|
|
||||||
.item {
|
|
||||||
margin-top: 2rem;
|
|
||||||
display: flex;
|
|
||||||
position: relative;
|
|
||||||
}
|
|
||||||
|
|
||||||
.details {
|
|
||||||
flex: 1;
|
|
||||||
margin-left: 1rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
i {
|
|
||||||
display: flex;
|
|
||||||
place-items: center;
|
|
||||||
place-content: center;
|
|
||||||
width: 32px;
|
|
||||||
height: 32px;
|
|
||||||
|
|
||||||
color: var(--color-text);
|
|
||||||
}
|
|
||||||
|
|
||||||
h3 {
|
|
||||||
font-size: 1.2rem;
|
|
||||||
font-weight: 500;
|
|
||||||
margin-bottom: 0.4rem;
|
|
||||||
color: var(--color-heading);
|
|
||||||
}
|
|
||||||
|
|
||||||
@media (min-width: 1024px) {
|
|
||||||
.item {
|
|
||||||
margin-top: 0;
|
|
||||||
padding: 0.4rem 0 1rem calc(var(--section-gap) / 2);
|
|
||||||
}
|
|
||||||
|
|
||||||
i {
|
|
||||||
top: calc(50% - 25px);
|
|
||||||
left: -26px;
|
|
||||||
position: absolute;
|
|
||||||
border: 1px solid var(--color-border);
|
|
||||||
background: var(--color-background);
|
|
||||||
border-radius: 8px;
|
|
||||||
width: 50px;
|
|
||||||
height: 50px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.item:before {
|
|
||||||
content: ' ';
|
|
||||||
border-left: 1px solid var(--color-border);
|
|
||||||
position: absolute;
|
|
||||||
left: 0;
|
|
||||||
bottom: calc(50% + 25px);
|
|
||||||
height: calc(50% - 25px);
|
|
||||||
}
|
|
||||||
|
|
||||||
.item:after {
|
|
||||||
content: ' ';
|
|
||||||
border-left: 1px solid var(--color-border);
|
|
||||||
position: absolute;
|
|
||||||
left: 0;
|
|
||||||
top: calc(50% + 25px);
|
|
||||||
height: calc(50% - 25px);
|
|
||||||
}
|
|
||||||
|
|
||||||
.item:first-of-type:before {
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.item:last-of-type:after {
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
</style>
|
|
@ -1,16 +1,68 @@
|
|||||||
<script>
|
<script>
|
||||||
|
|
||||||
|
import {HomeFilled, SwitchButton} from "@element-plus/icons-vue";
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: "ZooHeader"
|
name: "ZooHeader",
|
||||||
|
computed: {
|
||||||
|
HomeFilled() {
|
||||||
|
return HomeFilled
|
||||||
|
},
|
||||||
|
SwitchButton() {
|
||||||
|
return SwitchButton
|
||||||
|
}
|
||||||
|
},
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
visible: false,
|
||||||
|
}
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
// 退出登录
|
||||||
|
logout() {
|
||||||
|
console.log("logout");
|
||||||
|
sessionStorage.removeItem('isLogin')
|
||||||
|
this.$router.push('/login');
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<div id="header">
|
<div id="header">
|
||||||
<slot>我是头部插槽</slot>
|
<div class="to-home left">
|
||||||
|
<el-button :icon="HomeFilled" size="large" @click="$router.push('/panel/home')">返回首页</el-button>
|
||||||
|
</div>
|
||||||
|
动物信息管理系统
|
||||||
|
<div class="logout right">
|
||||||
|
<el-popover :visible="visible" placement="top" :width="160" trigger="click">
|
||||||
|
<p>是否退出登录?</p>
|
||||||
|
<div style="text-align: right; margin: 0">
|
||||||
|
<el-button size="small" text @click="visible = false">取消</el-button>
|
||||||
|
<el-button size="small" type="primary" @click="visible = false;logout()">确认</el-button>
|
||||||
|
</div>
|
||||||
|
<template #reference>
|
||||||
|
<el-button :icon="SwitchButton" size="large" @click="visible = true">退出登录</el-button>
|
||||||
|
</template>
|
||||||
|
</el-popover>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<style scoped>
|
<style scoped>
|
||||||
|
#header {
|
||||||
|
text-align: center;
|
||||||
|
font-size: 32px;
|
||||||
|
line-height: 60px;
|
||||||
|
background-color: whitesmoke;
|
||||||
|
}
|
||||||
|
|
||||||
|
.to-home {
|
||||||
|
margin-left: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.logout {
|
||||||
|
margin-right: 20px;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
@ -1,10 +1,16 @@
|
|||||||
import './assets/main.css'
|
import './assets/common.css'
|
||||||
|
|
||||||
import { createApp } from 'vue'
|
import { createApp } from 'vue'
|
||||||
import App from './App.vue'
|
import App from './App.vue'
|
||||||
import router from './router'
|
import router from './router'
|
||||||
|
|
||||||
|
import * as ElementPlusIconsVue from '@element-plus/icons-vue'
|
||||||
|
|
||||||
const app = createApp(App)
|
const app = createApp(App)
|
||||||
|
|
||||||
|
for (const [key, component] of Object.entries(ElementPlusIconsVue)) {
|
||||||
|
app.component(key, component)
|
||||||
|
}
|
||||||
|
|
||||||
app.use(router)
|
app.use(router)
|
||||||
app.mount('#app')
|
app.mount('#app')
|
||||||
|
@ -1,6 +1,15 @@
|
|||||||
<script>
|
<script>
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: "ZooHome"
|
name: "ZooHome",
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
|
||||||
|
}
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
|
||||||
|
}
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
@ -1,8 +1,10 @@
|
|||||||
<script>
|
<script>
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: "ZooContainer",
|
name: "ZooContainer",
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
|
tip: '',
|
||||||
form: {
|
form: {
|
||||||
name: '张三',
|
name: '张三',
|
||||||
password: '123456'
|
password: '123456'
|
||||||
@ -11,42 +13,60 @@ export default {
|
|||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
onSubmit() {
|
onSubmit() {
|
||||||
console.log('点击了按钮')
|
console.log('点击了登录按钮')
|
||||||
this.$router.push({
|
if (!this.form.name || !this.form.password) {
|
||||||
path: '/panel/home',
|
//返回提示
|
||||||
})
|
return ElMessage({
|
||||||
}
|
message: '用户名和密码不能为空',
|
||||||
}
|
type: 'warning',
|
||||||
|
})
|
||||||
|
} else {
|
||||||
|
//此处接入后端登录接口验证登录用户名和密码,验证通过方可通行
|
||||||
|
sessionStorage.setItem('isLogin', 'isLogin');
|
||||||
|
this.$router.push('/panel/home')
|
||||||
|
|
||||||
|
}
|
||||||
|
},
|
||||||
|
reset() {
|
||||||
|
this.form = {}
|
||||||
|
},
|
||||||
|
},
|
||||||
|
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<div class="root center">
|
<div class="root">
|
||||||
<el-card style="width: 480px" shadow="always">
|
<div class="center">
|
||||||
<el-form :model="form" label-width="auto" style="max-width: 600px">
|
<el-card style="width: 480px" shadow="always" header="登录">
|
||||||
<el-form-item label="用户名">
|
<el-form :model="form" label-width="auto" style="max-width: 600px">
|
||||||
<el-input v-model="form.name" style="width: 240px" placeholder="请输入用户名"/>
|
<el-form-item label="用户名">
|
||||||
</el-form-item>
|
<el-input v-model="form.name" style="width: 240px" placeholder="请输入用户名"/>
|
||||||
<el-form-item label="密码">
|
</el-form-item>
|
||||||
<el-input
|
<el-form-item label="密码">
|
||||||
v-model="form.password"
|
<el-input
|
||||||
style="width: 240px"
|
v-model="form.password"
|
||||||
type="password"
|
style="width: 240px"
|
||||||
placeholder="请输入密码"
|
type="password"
|
||||||
show-password
|
placeholder="请输入密码"
|
||||||
/>
|
show-password
|
||||||
</el-form-item>
|
/>
|
||||||
<el-form-item>
|
</el-form-item>
|
||||||
<el-button type="primary" @click="onSubmit">登录</el-button>
|
<el-form-item>
|
||||||
<el-button>重置</el-button>
|
<el-button type="primary" @click="onSubmit">登录</el-button>
|
||||||
</el-form-item>
|
<el-button @click="reset">重置</el-button>
|
||||||
</el-form>
|
</el-form-item>
|
||||||
</el-card>
|
</el-form>
|
||||||
|
</el-card>
|
||||||
|
</div>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<style scoped>
|
<style scoped>
|
||||||
.root {
|
.root {
|
||||||
|
width: 100%;
|
||||||
|
height: 700px;
|
||||||
|
background-color: skyblue;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
@ -1,27 +1,23 @@
|
|||||||
<script>
|
<script>
|
||||||
// import {
|
|
||||||
// Document,
|
|
||||||
// Menu as IconMenu,
|
|
||||||
// Location,
|
|
||||||
// Setting,
|
|
||||||
// } from '@element-plus/icons-vue'
|
|
||||||
import ZooHeader from "@/components/ZooHeader.vue";
|
import ZooHeader from "@/components/ZooHeader.vue";
|
||||||
import ZooAside from "@/components/ZooAside.vue";
|
import ZooAside from "@/components/ZooAside.vue";
|
||||||
import ZooMain from "@/components/ZooMain.vue";
|
import ZooMain from "@/components/ZooMain.vue";
|
||||||
import ZooFooter from "@/components/ZooFooter.vue";
|
import ZooFooter from "@/components/ZooFooter.vue";
|
||||||
|
import {SwitchButton} from "@element-plus/icons-vue";
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: "ZooPanel",
|
name: "ZooPanel",
|
||||||
|
computed: {
|
||||||
|
SwitchButton() {
|
||||||
|
return SwitchButton
|
||||||
|
}
|
||||||
|
},
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
components: {
|
components: {
|
||||||
// Document,
|
|
||||||
// IconMenu,
|
|
||||||
// Location,
|
|
||||||
// Setting
|
|
||||||
ZooHeader,
|
ZooHeader,
|
||||||
ZooAside,
|
ZooAside,
|
||||||
ZooMain,
|
ZooMain,
|
||||||
@ -44,7 +40,7 @@ export default {
|
|||||||
.root {
|
.root {
|
||||||
width: 1300px;
|
width: 1300px;
|
||||||
height: 700px;
|
height: 700px;
|
||||||
background-color: pink;
|
/*background-color: pink;*/
|
||||||
}
|
}
|
||||||
.aside {
|
.aside {
|
||||||
width: 200px;
|
width: 200px;
|
||||||
|
@ -20,10 +20,12 @@ const router = createRouter({
|
|||||||
{
|
{
|
||||||
path: '/panel',
|
path: '/panel',
|
||||||
component:ZooPanel,
|
component:ZooPanel,
|
||||||
|
meta:{isAuth: true},//需要权限
|
||||||
children:[
|
children:[
|
||||||
{
|
{
|
||||||
path: 'home',
|
path: 'home',
|
||||||
component: ZooHome
|
component: ZooHome,
|
||||||
|
meta:{isAuth: true},//需要权限
|
||||||
},
|
},
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
@ -34,4 +36,19 @@ const router = createRouter({
|
|||||||
]
|
]
|
||||||
})
|
})
|
||||||
|
|
||||||
|
router.beforeEach((to, from, next) => {
|
||||||
|
//判断页面是否需要登录权限才可进入
|
||||||
|
if (to.meta.isAuth) {
|
||||||
|
if (!sessionStorage.getItem('isLogin')) {
|
||||||
|
router.replace({
|
||||||
|
path: '/login',
|
||||||
|
})
|
||||||
|
} else {
|
||||||
|
next()
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
next()
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
export default router
|
export default router
|
Loading…
Reference in New Issue
Block a user