| @@ -20,7 +20,7 @@ | |||||
| cursor: pointer; | cursor: pointer; | ||||
| " | " | ||||
| > | > | ||||
| <div class="daili" @click="goChange"> | |||||
| <div class="daili " @click="goChange"> | |||||
| {{ | {{ | ||||
| orgType == 0 | orgType == 0 | ||||
| ? "系统后台" | ? "系统后台" | ||||
| @@ -425,7 +425,7 @@ export default { | |||||
| .daili { | .daili { | ||||
| // width: 100px; | // width: 100px; | ||||
| height: 30px; | height: 30px; | ||||
| background: #2671e2; | |||||
| // background: #2671e2; | |||||
| border-radius: 4px; | border-radius: 4px; | ||||
| line-height: 30px; | line-height: 30px; | ||||
| text-align: center; | text-align: center; | ||||
| @@ -435,7 +435,8 @@ export default { | |||||
| } | } | ||||
| .change { | .change { | ||||
| font-size: 16px; | font-size: 16px; | ||||
| color: #2671e2; | |||||
| // color: #2671e2; | |||||
| color: white; | |||||
| margin-left: 10px; | margin-left: 10px; | ||||
| } | } | ||||
| </style> | </style> | ||||
| @@ -8,8 +8,12 @@ Vue.use(VueRouter) | |||||
| //创建路由 | //创建路由 | ||||
| // console.log(PageRouter,ViewsRouter,'123') | // console.log(PageRouter,ViewsRouter,'123') | ||||
| // console.log(Store) | // console.log(Store) | ||||
| console.log(process.env.BASE_URL,123); | |||||
| export const createRouter = () => new VueRouter({ | export const createRouter = () => new VueRouter({ | ||||
| // mode:'history', | |||||
| // base:'/wel/index', | |||||
| routes: [...PageRouter, ...ViewsRouter] | routes: [...PageRouter, ...ViewsRouter] | ||||
| }) | }) | ||||
| const Router = createRouter() | const Router = createRouter() | ||||