router---> index.js
{
path: '/views',
beforeEnter(to, from, next) {
if (config.isDev) {
window.location = '/view.html'
} else {
window.location = '/h5/saas/index.html'
}
}
}