Browse Source

修复1.2 新版本的导航栏Tab有错 #14

daxiongYang 7 years ago
parent
commit
48a7208932
3 changed files with 6 additions and 5 deletions
  1. 1 1
      src/assets/scss/_base.scss
  2. 3 2
      src/router/index.js
  3. 2 2
      src/views/main.vue

+ 1 - 1
src/assets/scss/_base.scss

@ -96,7 +96,7 @@ img {
96 96
    margin-right: 0;
97 97
    font-size: 20px;
98 98
  }
99
  .site-content--tabs > .el-tabs .el-tabs__header {
99
  .site-content--tabs > .el-tabs > .el-tabs__header {
100 100
    left: 64px;
101 101
  }
102 102
}

+ 3 - 2
src/router/index.js

@ -114,10 +114,11 @@ function fnAddDynamicMenuRoutes (menuList = [], routes = []) {
114 114
    if (menuList[i].list && menuList[i].list.length >= 1) {
115 115
      temp = temp.concat(menuList[i].list)
116 116
    } else if (/\S/.test(menuList[i].url)) {
117
      menuList[i].url = menuList[i].url.replace(/^\//, '')
117 118
      var route = {
118
        path: menuList[i].url.replace(/^\//, '').replace('/', '-'),
119
        path: menuList[i].url.replace('/', '-'),
119 120
        component: null,
120
        name: menuList[i].url.replace(/^\//, '').replace('/', '-'),
121
        name: menuList[i].url.replace('/', '-'),
121 122
        meta: {
122 123
          menuId: menuList[i].menuId,
123 124
          title: menuList[i].name,

+ 2 - 2
src/views/main.vue

@ -69,8 +69,8 @@
69 69
        }).then(({data}) => {
70 70
          if (data && data.code === 0) {
71 71
            this.loading = false
72
            this.userId = data.user.userId
73
            this.userName = data.user.username
72
            this.userId = data.user.userId || ''
73
            this.userName = data.user.username || ''
74 74
          }
75 75
        })
76 76
      }