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.

94 lines
2.2 KiB

<template>
<div class="container-bgc">
<div class="top">
3 weeks ago
<div class="loginBtn">
<p @click="loginFn">{{ user.token ? "已登录" : "登录/注册" }}</p>
3 weeks ago
</div>
<div class="title">{{ setting.title }}</div>
</div>
<router-view v-slot="{ Component }">
3 weeks ago
<keep-alive>
<component :is="Component"></component>
</keep-alive>
</router-view>
<keep-alive> </keep-alive>
<div class="bottom"></div>
</div>
</template>
<script lang="ts" setup>
import { useRouter } from "vue-router";
// import { onMounted, reactive, ref, toRefs, watch } from "vue";
import settingStore from "@/store/modules/setting";
import userStore from "@/store/modules/user";
const user = userStore();
const setting = settingStore();
const router = useRouter();
console.log(setting.title);
const loginFn = () => {
// user.token ? router.push("/spacePage") : "";
if(user.token){
router.push("/spacePage")
return
3 weeks ago
}
router.push("/login");
};
</script>
<style lang="scss" scoped>
.container-bgc {
position: relative;
width: 100%;
// height: 1080px;
min-height: 100vh;
background-color: #091d22;
background: url("../assets//images/bg2.png") no-repeat;
3 weeks ago
background-size: cover;
.top {
width: 100%;
height: 75px;
text-align: center;
font-size: 42px;
line-height: 75px;
font-style: italic;
background: url("../assets/images/topbgc.png") no-repeat;
// background-position: center bottom -10px;
background-size: cover;
3 weeks ago
.title {
color: #fff;
}
3 weeks ago
.loginBtn {
position: absolute;
/* 清除浮动影响 */
3 weeks ago
float: left;
/* 向左浮动 */
3 weeks ago
top: 10px;
left: 230px;
border: 1px solid #33fefe;
3 weeks ago
box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
width: 142px;
height: 40px;
line-height: 37px;
background: linear-gradient(to bottom, #08b9c1, #0758b8);
3 weeks ago
transform: skew(-30deg);
cursor: pointer;
/* 在X轴方向倾斜 -35 度 */
border-radius: 5%;
p {
transform: skew(30deg);
/* 反向倾斜,抵消父元素的变形 */
font-size: 18px;
color: #fff;
}
3 weeks ago
}
}
}
</style>