Commit 22dbccad authored by 孟飞's avatar 孟飞

111

parent 65c8060b
......@@ -4,7 +4,7 @@
<div class="image">
<img :src="system_logo" alt="" />
</div>
<div class="right" v-if="isLogin">
<div class="right" v-if="!isLogin">
<span @mouseenter="onMouserEnter(false)" :class="isHover?'':'is-hover'" @click="toLogin">登录</span>
<span @mouseenter="onMouserEnter(true)" :class="isHover?'is-hover':''" @click="toRegister">注册</span>
</div>
......@@ -16,10 +16,10 @@
<i class="el-icon-arrow-down el-icon--right"></i>
</div>
<el-dropdown-menu slot="dropdown">
<el-dropdown-item command="1">
<el-dropdown-item command="1" @click="toCenter">
<i class="el-icon-switch-button"></i>个人中心</el-dropdown-item
>
<el-dropdown-item command="1">
<el-dropdown-item command="2" @click="logout">
<i class="el-icon-switch-button"></i>退出</el-dropdown-item
>
</el-dropdown-menu>
......@@ -30,6 +30,8 @@
</template>
<script>
/* eslint-disable */
import {logout} from "r/index/login";
export default {
name: "Header",
data() {
......@@ -37,18 +39,66 @@ export default {
isHover: true,
system_logo: window.localStorage.getItem("system_logo"),
isLogin:false,
phone: window.localStorage.getItem("phone"),
};
},
created() {},
created() {
this.isLogin = !!localStorage.getItem("index-token");
},
methods: {
toLogin() {
let code = localStorage.getItem("index-identity");
this.$router.push("/login?code="+code);
},
handleCommand(command) {
if (command == 2) {
this.logout();
}
if (command == 1) {
this.toCenter();
}
},
toCenter(){
let code = localStorage.getItem("index-identity");
this.$router.replace("/signUp/examInfo?code="+code);
},
toRegister() {
let code = localStorage.getItem("index-identity");
this.$router.push("/register?code="+code);
},
async logout() {
const confirmResult = await this.$confirm(`确认退出登录?`, "提示", {
confirmButtonText: "确定",
cancelButtonText: "取消",
closeOnClickModal: false,
type: "warning",
}).catch((err) => err);
if (confirmResult !== "confirm")
return this.$message.info("您取消了退出");
await logout({});
// if (res.code !== 200) return this.$message.error(res.message);
// 清除本地缓存除了大学logo
// window.localStorage.clear();
window.localStorage.removeItem("doubt_code");
window.localStorage.removeItem("doubt_info");
window.localStorage.removeItem("doubt_check");
// window.localStorage.removeItem("index-identity");
window.localStorage.removeItem("index-token");
window.localStorage.removeItem("phone");
window.localStorage.removeItem("camp_name");
window.localStorage.removeItem("system_color");
window.localStorage.removeItem("has_amount");
window.localStorage.removeItem("campsite_id");
window.localStorage.removeItem("order_no");
window.localStorage.removeItem("campindex_type");
// this.$store.state.token = "";
// 使用编程式导航跳转到登录页面
// this.$router.push({ name: "recruit" });
let code = localStorage.getItem("index-identity");
this.$router.replace("/"+code);
},
onMouserEnter(val){
this.isHover = val;
},
......@@ -90,6 +140,35 @@ export default {
}
}
}
.right {
height: 80px;
::v-deep .el-dropdown {
height: 80px;
.el-dropdown-link {
height: 80px;
display: flex;
flex-flow: row;
align-items: center;
.img_user {
width: 34px;
height: 34px;
background-color: #d8d8d8;
border-radius: 50%;
}
.phone {
margin: 0 10px 0 12px;
}
}
&:hover {
cursor: pointer;
}
}
}
}
}
</style>
......@@ -121,13 +121,6 @@ function checkCam(code, cb) {
})
}
function checkLogin(){
let token = localStorage.getItem("index-token");
if(token){
}
}
router.beforeEach((to, from, next) => {
let tokenKey = "index-token",
toLogin = "/login",
......
......@@ -172,7 +172,7 @@ export default {
);
// 跳转到报名
let code = localStorage.getItem("index-identity");
this.$router.push("/signUp/examInfo?code="+code);
this.$router.replace("/signUp/examInfo?code="+code);
});
});
},
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment