Commit 3d0f3156 by tang

feat: 用户中心入口

parent d6ae8d1f
<template>
<div class="nav-me container marginTop20 mb-5" style="position: relative">
<div class="row">
<div class="col-lg-3">
<SubNav/>
</div>
<div class="col-lg-9">
<router-view></router-view>
</div>
</div>
</div>
</template>
<script>
import SubNav from "../comps/SubNav.vue";
import "./style/common.scss";
const UN_VERIFY = 0;
const SYSTEM_MEMBER = 1;
const ADMIN = 2;
export default {
components: {
SubNav,
},
created() {
// TODO 判断用户状态 处理一下左侧的 sub_nav 和用户panel
// 1. 未申请条码
// 2.系统成员
// 3.管理员
this.userType = ADMIN;
},
data() {
return {};
},
};
</script>
<style>
.nav-me p {
line-height: 24px;
}
</style>
......@@ -9,3 +9,4 @@ News:资讯中心
Org: 机构概况
Search: 条码查询
Service: 服务中心
MyManage: 用户中心
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