router--- index.js


import Vue from 'vue';
import Router from 'vue-router';
import store from '../store';
import Api from '../lib/api/api';

import Homes from '../views/homes/homes';
import Index from '../views/homes/index';


Vue.use(Router);

let router = new Router({
// mode: 'history',
routes: [
{ path: '/', redirect: '/login'},
{
path: '/home',
name: 'home',
component: Homes,
children: [
{ path: '/', name: 'home', component: Index2},
{ path: '/index', name: 'index', component: Index},
]
},
{ path: '/bet/:sign', name: 'bet', component: Bet},
{ path: '*', redirect: '/home'}
]
});



router.beforeEach((to, from, next) => {


// 处理路由切换时 切换效果
if(document.documentElement['scrollTop']) {
document.documentElement.scrollTop = 0;
} else {
document.body.scrollTop = 0;
}

// 跳转路由 取消上个路由的请求
if(store.state['axiosPromiseCancel'].length > 0) {
store.state['axiosPromiseCancel'].forEach(e => {
e && e.f()
});
}
store.state['axiosPromiseCancel'] = [];

if(!store.state.baseConfig.banner) {
Api.baseConfig().then(response => {
if (response.success) {
store.state.baseConfig = response.data;
}
})
}
// 是否加密
// Api.isCryptData().then( response => {
// if (response['success']) {
// window.isCryptData = response['data'];
//
// }
// });
next();

});

export default router;


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM