21级的知识图谱仓库
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

266 lines
5.9 KiB

7 months ago
<template>
7 months ago
<div :class="!flog && false ? 'tabbar' : 'tabbar-active'">
7 months ago
<div class="container">
7 months ago
<div class="logo-box">
<div class="logo"><img :src="adminInfoStore.info.logo"></div>
<div class="lesson">课图</div>
</div>
7 months ago
<div class="menu">
<ul>
7 months ago
<li v-for="(item, index) in constRouter[0].children" :class="{ active: settingStore.useIndex === index }"
v-show="!item.meta.hidden" @click="goToRouter(item, index)" :key="item.path">
<div>{{ item.meta.title }}</div>
7 months ago
</li>
<div v-if="userStore.isLogin">
<img :src="userStore.userInfo.icon" alt=""
style="width: 24px; height: 24px; margin: 0 10px; border-radius: 50%" />
7 months ago
<el-dropdown @command="handleCommand">
<span class="el-dropdown-link" style="color: #fff;">
{{ userStore.userInfo.username }}
7 months ago
<el-icon class="el-icon--right">
<arrow-down />
</el-icon>
</span>
<template #dropdown>
<el-dropdown-menu>
<el-dropdown-item command="A">退出登录</el-dropdown-item>
</el-dropdown-menu>
</template>
</el-dropdown>
</div>
<li v-else @click="send">登录注册</li>
<!-- skip('http://localhost:5173/#/login?redirect=/configurationPage') -->
7 months ago
<!-- <li v-if="$route.path != '/home'" @click="$router.push('/')">回到首页</li> -->
7 months ago
</ul>
<div class="entry">
7 months ago
<!-- <div>企业入口</div>
7 months ago
<div>教师入口</div>
7 months ago
<div>学生入口</div> -->
<!-- <div>登录注册</div> -->
7 months ago
</div>
</div>
</div>
</div>
</template>
<script lang="ts" setup>
7 months ago
import useAdminInfoStore from '@/store/module/adminInfo'
const adminInfoStore = useAdminInfoStore()
import { userGetInfoService } from '@/api/configuration';
import useUserStore from '@/store/module/user';
const userStore = useUserStore()
7 months ago
import { constRouter } from '@/router/module/constRouter'
7 months ago
import { useRouter, useRoute } from 'vue-router'
import { computed, onMounted, ref } from 'vue'
7 months ago
import useSettingStore from '@/store/module/setting'
const $router = useRouter()
7 months ago
const $route = useRoute()
7 months ago
const settingStore = useSettingStore()
const goToRouter = (item: any, index: number) => {
7 months ago
console.log($route);
7 months ago
settingStore.setuseIndex(index)
7 months ago
$router.push({ path: `${item.path}` })
7 months ago
}
const flog = ref(false)
onMounted(() => {
7 months ago
window.addEventListener('scroll', () => {
if (window.scrollY >= 50) {
7 months ago
flog.value = true
7 months ago
} else if (flog.value && window.scrollY <= 50) {
7 months ago
flog.value = false
}
7 months ago
})
})
function skip(url: string) {
location.assign(url)
}
// ========================
let otherWin: any = null;
function send() {
if (otherWin) {
otherWin.focus();
return
}
otherWin = window.open(import.meta.env.VITE_APP_OTHER_ORIGIN)
}
window.onmessage = e => {
if (e.origin === import.meta.env.VITE_APP_OTHER_ORIGIN) {
userStore.setToken(e.data)
userStore.setUserInfo()
}
}
// ========================
7 months ago
// 退出登录
function logout() {
try {
otherWin.postMessage('logout', import.meta.env.VITE_APP_OTHER_ORIGIN)
} catch (error) {
send()
setTimeout(() => {
otherWin.postMessage('logout', import.meta.env.VITE_APP_OTHER_ORIGIN)
}, 500)
}
7 months ago
}
const handleCommand = (command: string) => {
switch (command) {
case 'A':
logout()
break
}
}
7 months ago
</script>
<style lang="scss" scoped>
7 months ago
.logo-box {
display: flex;
align-items: center;
column-gap: 20px;
.logo {
width: 50px;
img {
width: 100%;
height: 100%;
}
}
.lesson {
font-size: 30px;
font-weight: bolder;
color: #fff;
}
}
7 months ago
.tabbar {
position: fixed;
top: 0;
7 months ago
z-index: 1;
7 months ago
height: 120px;
width: 100%;
background-color: transparent;
7 months ago
animation-duration: 0.3s;
7 months ago
animation-name: tabber-to;
}
7 months ago
7 months ago
.tabbar-active {
position: fixed;
top: 0;
height: 120px;
width: 100%;
7 months ago
background-color: #6da0ff;
animation-duration: 0.3s;
7 months ago
animation-name: tabber;
7 months ago
z-index: 999;
box-shadow: 0px 0px 43px rgba(0, 0, 0, 0.2);
7 months ago
}
7 months ago
7 months ago
@keyframes tabber {
7 months ago
0% {
7 months ago
// transform: translateY(-120px);
7 months ago
background-color: transparent;
7 months ago
}
7 months ago
100% {
// transform: translateY(0);
background-color: #6da0ff;
7 months ago
}
}
7 months ago
7 months ago
@keyframes tabber-to {
7 months ago
0% {
7 months ago
// transform: translateY(-120px);
7 months ago
background-color: #6da0ff;
7 months ago
}
7 months ago
100% {
7 months ago
// transform: translateY(0);
background-color: transparent;
}
}
7 months ago
7 months ago
.container {
7 months ago
height: 100%;
display: flex;
align-items: center;
justify-content: space-between;
margin: 0 auto;
width: $base-container-width;
.menu {
position: relative;
padding: 0 20px;
7 months ago
height: 100%;
display: flex;
align-items: center;
7 months ago
ul {
7 months ago
display: flex;
align-items: center;
7 months ago
li {
padding: 12px 20px;
color: #ffffff;
font-size: 14px;
cursor: pointer;
transition: all 0.2s;
position: relative;
}
li:hover {
color: #0033f7;
transform: translateY(-5px);
7 months ago
}
7 months ago
.active::before {
content: ' ';
display: block;
7 months ago
position: absolute;
7 months ago
top: 0px;
left: 50%;
transform: translateX(-50%);
width: 5px;
height: 5px;
border-radius: 50%;
background-color: #fff;
7 months ago
}
}
7 months ago
.entry {
position: absolute;
top: 5px;
right: 30px;
7 months ago
display: flex;
7 months ago
align-content: center;
div {
// padding: 5px;
margin: 5px;
margin-right: 0;
padding: 0 10px;
border-right: 1px solid #fff;
color: #fff;
font-size: 14px;
cursor: pointer;
}
div:last-child {
border-right: none;
}
7 months ago
}
}
7 months ago
.logo {
// height: 100%;
display: flex;
align-items: center;
}
}
7 months ago
</style>