offline_mer/src/permission.js

110 lines
4.2 KiB
JavaScript
Raw Normal View History

2024-04-17 11:16:37 +08:00
2024-03-22 15:50:26 +08:00
import Element from 'element-ui'
import router from './router'
import store from './store'
import NProgress from 'nprogress' // progress bar
import 'nprogress/nprogress.css' // progress bar style
import { getToken } from '@/utils/auth' // get token from cookie
import getPageTitle from '@/utils/get-page-title'
import { roterPre } from '@/settings'
import { editFormApi } from '@/api/user'
import { MessageBox, Message } from 'element-ui'
NProgress.configure({ showSpinner: false }) // NProgress Configuration
const whiteList = [`${roterPre}/login`, '/auth-redirect'] // no redirect whitelist
2024-04-17 11:16:37 +08:00
router.beforeEach(async (to, from, next) => {
2024-03-22 15:50:26 +08:00
let isEdit = store.getters.isEdit
// if(from.name == 'AddProduct' || from.name == 'CreateSpikeGoods' || from.name == 'preSaleCreate' || from.name == 'assistProductCreate' || from.name == 'combinationCreate'){
2024-04-17 11:16:37 +08:00
if (isEdit) {
2024-03-22 15:50:26 +08:00
MessageBox.confirm('离开该编辑页面,已编辑信息会丢失,请问您确认离开吗?', '提示', {
2024-04-17 11:16:37 +08:00
confirmButtonText: '离开',
2024-03-22 15:50:26 +08:00
cancelButtonText: '不离开',
2024-04-17 11:16:37 +08:00
confirmButtonClass: 'btnTrue',
cancelButtonClass: 'btnFalse',
2024-03-22 15:50:26 +08:00
type: 'warning'
2024-04-17 11:16:37 +08:00
}).then(() => {
2024-03-22 15:50:26 +08:00
// async() => {
// }
store.dispatch("settings/setEdit", false);
NProgress.start()
document.title = getPageTitle(to.meta.title)
const hasToken = getToken()
if (hasToken) {
if (to.path === `${roterPre}/login`) {
2024-04-17 11:16:37 +08:00
// if is logged in, redirect to the home page
next({ path: '/' })
NProgress.done()
2024-03-22 15:50:26 +08:00
} else {
2024-04-17 11:16:37 +08:00
if (from.fullPath === '/' && from.path !== `${roterPre}/login`) {
editFormApi().then(res => {
next()
}).catch(res => {
next()
})
} else {
2024-03-22 15:50:26 +08:00
next()
2024-04-17 11:16:37 +08:00
}
2024-03-22 15:50:26 +08:00
}
} else {
/* has no token*/
if (whiteList.indexOf(to.path) !== -1) {
2024-04-17 11:16:37 +08:00
// in the free login whitelist, go directly
next()
2024-03-22 15:50:26 +08:00
} else {
2024-04-17 11:16:37 +08:00
// other pages that do not have permission to access are redirected to the login page.
// await store.dispatch('user/resetToken')
next(`${roterPre}/login?redirect=${to.path}`)
NProgress.done()
2024-03-22 15:50:26 +08:00
}
2024-04-17 11:16:37 +08:00
}
})
} else {
2024-03-22 15:50:26 +08:00
// start progress bar
NProgress.start()
// set page title
document.title = getPageTitle(to.meta.title)
// determine whether the user has logged in
const hasToken = getToken()
if (hasToken) {
if (to.path === `${roterPre}/login`) {
// if is logged in, redirect to the home page
next({ path: '/' })
NProgress.done()
} else {
2024-04-17 11:16:37 +08:00
if (from.fullPath === '/' && from.path !== `${roterPre}/login`) {
editFormApi().then(res => {
next()
}).catch(res => {
next()
})
} else {
2024-11-26 16:58:56 +08:00
// next()
if (!to.query.t) {
next({ ...to, query: { ...to.query, t: Date.now() } })
} else {
next()
}
2024-03-22 15:50:26 +08:00
}
}
} else {
2024-04-17 11:16:37 +08:00
/* has no token*/
if (whiteList.indexOf(to.path) !== -1) {
// in the free login whitelist, go directly
next()
} else {
// other pages that do not have permission to access are redirected to the login page.
await store.dispatch('user/resetToken')
next(`${roterPre}/login?redirect=${to.path}`)
NProgress.done()
}
2024-03-22 15:50:26 +08:00
}
store.dispatch("settings/setEdit", false);
}
})
router.afterEach(() => {
2024-04-17 11:16:37 +08:00
// finish progress bar
NProgress.done()
2024-03-22 15:50:26 +08:00
})