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.
58 lines
1.7 KiB
58 lines
1.7 KiB
<template> |
|
<div class="width-[100%] flex justify-between items-center w-full py-6 lg:py-4 px-5 overflow-hidden bg-transparent"> |
|
<logo :collapse="collapse" /> |
|
<div v-if="!hidePanel" |
|
class="inline-flex items-center"> |
|
<el-tooltip effect="light" |
|
content="退出实训" |
|
placement="bottom"> |
|
<img class="mr-3 cursor-pointer" |
|
src="@/assets/images/11.png" |
|
alt="" |
|
@click="logout" /> |
|
</el-tooltip> |
|
<el-tooltip effect="light" |
|
content="返回关卡" |
|
placement="bottom"> |
|
<img class="mr-3 cursor-pointer" |
|
src="@/assets/images/2.png" |
|
alt="" |
|
@click="toLevel" /> |
|
</el-tooltip> |
|
<el-tooltip effect="light" |
|
content="返回选择角色" |
|
placement="bottom"> |
|
<img class="cursor-pointer" |
|
src="@/assets/images/4.png" |
|
alt="" |
|
@click="toRole" /> |
|
</el-tooltip> |
|
</div> |
|
</div> |
|
</template> |
|
|
|
<script setup lang="ts"> |
|
import { ref, onMounted, computed } from 'vue'; |
|
import { useRouter, useRoute } from 'vue-router'; |
|
import Settings from '@/settings'; |
|
import { currentUser, perm, logout } from '@/store/useCurrentUser'; |
|
import Cookies from 'js-cookie'; |
|
import Logo from './Logo.vue'; |
|
|
|
const router = useRouter(); |
|
const route = useRoute(); |
|
const hidePanel = computed(() => Settings.hidePanelPath.includes(route.path)); |
|
|
|
onMounted(() => {}); |
|
|
|
// 返回关卡 |
|
const toLevel = () => { |
|
router.push('/'); |
|
}; |
|
// 返回角色 |
|
const toRole = () => { |
|
router.push(`/role?levelId=${Cookies.get('sand-level')}`); |
|
}; |
|
</script> |
|
|
|
<style lang="scss" scoped></style>
|
|
|