|
@@ -10,15 +10,28 @@
|
|
|
<span @click="changePath(item)">{{item.label}}</span>
|
|
|
</div>
|
|
|
</div>
|
|
|
+ <div class="right-user">
|
|
|
+ <el-icon class="single-icon"><User /></el-icon>
|
|
|
+ <span>{{username}}</span>
|
|
|
+ <el-icon class="single-icon" @click="logOut"><SwitchButton /></el-icon>
|
|
|
+ </div>
|
|
|
</div>
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
import {ref} from "vue";
|
|
|
import router from "@/router/index.js";
|
|
|
+import {useUserStore} from "@/store/userStore.js";
|
|
|
+import {User,SwitchButton} from "@element-plus/icons-vue";
|
|
|
+
|
|
|
export default {
|
|
|
name: "VisualizationHeader",
|
|
|
+ components:{
|
|
|
+ User,
|
|
|
+ SwitchButton
|
|
|
+ },
|
|
|
setup(){
|
|
|
+ let userStore = useUserStore();
|
|
|
let menuList = ref([
|
|
|
{
|
|
|
id:"01",
|
|
@@ -38,7 +51,9 @@ export default {
|
|
|
chosen:false,
|
|
|
label:"市政设施"
|
|
|
}
|
|
|
- ])
|
|
|
+ ]);
|
|
|
+ let username =ref('');
|
|
|
+ username.value = userStore.userInfo.gxjh_username;
|
|
|
function changePath(item){
|
|
|
menuList.value.forEach((i)=>{
|
|
|
if(i.name == item.name){
|
|
@@ -49,9 +64,16 @@ export default {
|
|
|
}
|
|
|
})
|
|
|
}
|
|
|
+ function logOut(){
|
|
|
+ userStore.userInfo = {};
|
|
|
+ localStorage.setItem('exchangeUserInfo',null);
|
|
|
+ window.location.href='https://cimweb.zjw.sh.cegn.cn:2007/cim-home/#/login';
|
|
|
+ }
|
|
|
return {
|
|
|
+ logOut,
|
|
|
menuList,
|
|
|
- changePath
|
|
|
+ changePath,
|
|
|
+ username
|
|
|
}
|
|
|
}
|
|
|
}
|
|
@@ -119,5 +141,24 @@ export default {
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
+ .right-user{
|
|
|
+ position: absolute;
|
|
|
+ right: 30px;
|
|
|
+ top:10px;
|
|
|
+ width: 200px;
|
|
|
+ height: 60px;
|
|
|
+ display: flex;
|
|
|
+ justify-content: center;
|
|
|
+ align-items: center;
|
|
|
+ color: #ffffff;
|
|
|
+ font-size: 18px;
|
|
|
+ span{
|
|
|
+ padding-left: 6px;
|
|
|
+ }
|
|
|
+ .single-icon{
|
|
|
+ padding-left: 20px;
|
|
|
+ cursor: pointer;
|
|
|
+ }
|
|
|
+ }
|
|
|
}
|
|
|
</style>
|