navcon.vue 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. /**
  2. * 头部菜单
  3. */
  4. <template>
  5. <el-menu class="el-menu-demo" mode="horizontal" background-color="#334157" text-color="#fff" active-text-color="#fff">
  6. <!-- <el-button class="button_img">-->
  7. <!-- <img class="show_img" :src="collapsed ? imgSq : imgShow" @click="toggle(collapsed)">-->
  8. <!-- </el-button>-->
  9. <div class="submenu">
  10. <div style="margin-right: 20px">责任人:&emsp;{{ username }}</div>
  11. <el-button size="small" type="primary" @click="exit">返回</el-button>
  12. </div>
  13. </el-menu>
  14. </template>
  15. <script>
  16. import { setStore,getStore } from '@/utils/store'
  17. import img from '../assets/img/user.png'
  18. import { getLoginUserInfo } from "@/api/common"
  19. export default {
  20. name: 'navCon',
  21. data() {
  22. return {
  23. collapsed: true,
  24. imgShow: require('../assets/img/show.png'),
  25. imgSq: require('../assets/img/sq.png'),
  26. user: {},
  27. imgPath: img,
  28. username: ''
  29. }
  30. },
  31. created() {
  32. this.get_login_user_info()
  33. },
  34. methods: {
  35. get_login_user_info() {
  36. getLoginUserInfo().then(res=> {
  37. // setStore({'name': 'user', 'content': res.data, 'type':''})
  38. this.username = res.data.name
  39. })
  40. },
  41. exit() {
  42. window.location.href = `http://81.70.84.72:30043/planWeb/#/choose?token=${getStore({'name':'token','type':'','debug':''})}`
  43. }
  44. // // 退出登录
  45. // exit() {
  46. // this.$confirm('退出登录, 是否继续?', '提示', {
  47. // confirmButtonText: '确定',
  48. // cancelButtonText: '取消',
  49. // type: 'warning'
  50. // })
  51. // .then(() => {
  52. // this.$store.commit('logout')
  53. // this.$router.push({ path: '/login' })
  54. // this.$message({type: 'success', message: '已退出登录!'})
  55. // })
  56. // .catch(() => {
  57. // this.$message({ type: 'info', message: '已取消'})
  58. // })
  59. // },
  60. // 切换显示
  61. // toggle(val) {
  62. // this.collapsed = !val
  63. // this.$root.Bus.$emit('toggle', this.collapsed)
  64. // }
  65. }
  66. }
  67. </script>
  68. <style scoped>
  69. .submenu {
  70. float: right;
  71. color: #fff;
  72. line-height: 60px;
  73. margin-right: 20px;
  74. display: flex;
  75. align-items: center;
  76. }
  77. .button_img {
  78. height: 60px;
  79. background-color: transparent;
  80. border: none;
  81. }
  82. .show_img {
  83. width: 26px;
  84. height: 26px;
  85. position: absolute;
  86. top: 17px;
  87. left: 17px;
  88. }
  89. .show_img:active {
  90. border: none;
  91. }
  92. </style>