1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- // The Vue build version to load with the `import` command
- // (runtime-only or standalone) has been set in webpack.base.conf with an alias.
- import Vue from 'vue'
- import App from './App'
- import router from './router'
- import store from './store'
- import ElementUI from 'element-ui'
- import 'element-ui/lib/theme-default/index.css'
- import NProgress from 'nprogress'
- import 'normalize.css/normalize.css'
- import '@/assets/iconfont/iconfont'
- import IconSvg from '@/components/Icon-svg/index.vue'
- Vue.config.productionTip = false
- Vue.use(ElementUI);
- Vue.component('icon-svg', IconSvg)
- const whiteList = ['/login'];
- router.beforeEach((to, from, next) => {
- NProgress.start();
- if (store.getters.token) {
- if (to.path === '/login') {
- next({ path: '/' });
- } else {
- if (store.getters.roles.length === 0) {
- store.dispatch('GetInfo').then(res => {
- const roles = res.data.role;
- store.dispatch('GenerateRoutes', { roles }).then(() => {
- router.addRoutes(store.getters.addRouters)
- next(Object.assign({}, to));
- })
- })
- } else {
- next();
- }
- }
- } else {
- if (whiteList.indexOf(to.path) !== -1) {
- next()
- } else {
- next('/login');
- NProgress.done();
- }
- }
- });
- router.afterEach(() => {
- NProgress.done();
- });
- new Vue({
- el: '#app',
- router,
- store,
- template: '<App/>',
- components: { App }
- })
|