dbd-meeting-html/src/permission.js
471615499@qq.com 669a78fd20 1.登录页,去掉注册账户,去掉tab(src/views/user/login.vue)
2.固定语言为中文(src/locales/index.js、src/components/SeslectLang/index.jsx)
3.默认首页设置为/admin/repair/RepairDeviceList/repairStatistics(src/config/router.config.js)
4.左侧菜单固定(src/config/defaultSessting.js)
5.人员绩效前面小图标去掉(菜单设置,图标设为#)
6.工单列表页加入分页(基本重写逻辑)
7.人员绩效进入查看详情时,仅允许查看列表和详情,其余全部隐藏
8.重写了工单添加页和详情页,去掉了编辑工单功能
9.修复了添加工单后列表不加载BUG(子组件调用父组件方法handleOk)
10.故障类型、子类、报修地点、损坏原因等页面重新整理了一下,把文字统一,去掉了无用的筛选
11.人员绩效筛选加入人名,修改了重置的BUG,把全部加载改写成分页加载(a-tab上一定要加:force-render='true',预先dom加载好,否则refs获取不到,调用refresh时会报错)
12.选人时可以搜索人名或手机号(设置optionFilterProp="label",同时设置:label="item.username + item.mobile")
2024-08-31 22:01:04 +08:00

72 lines
2.6 KiB
JavaScript

import router from './router'
import store from './store'
import storage from 'store'
import NProgress from 'nprogress' // progress bar
import 'nprogress/nprogress.css' // progress bar style
import { notification } from 'ant-design-vue'
import { setDocumentTitle, domTitle } from '@/utils/domUtil'
import { ACCESS_TOKEN } from '@/store/mutation-types'
import { i18nRender } from '@/locales'
NProgress.configure({ showSpinner: false }) // NProgress Configuration
const allowList = ['login', 'register', 'registerResult', 'chart'] // no redirect allowList
const loginRoutePath = '/user/login'
const defaultRoutePath = '/admin/repair/RepairDeviceList/repairStatistics' // 登录跳转
router.beforeEach((to, from, next) => {
NProgress.start() // start progress bar
to.meta && (typeof to.meta.title !== 'undefined' && setDocumentTitle(`${i18nRender(to.meta.title)} - ${domTitle}`))
/* has token */
if (storage.get(ACCESS_TOKEN)) {
/* has token */
if (to.path === loginRoutePath) {
next({ path: defaultRoutePath })
NProgress.done()
} else {
if (store.getters.roles.length === 0) {
store.dispatch('GetInfo')
.then(() => {
// 调用 vuex 的 从后端获取用户的路由菜单,动态添加可访问路由表
store.dispatch('GenerateRoutes').then(() => {
// 把已获取到的路由菜单加入到路由表中
router.addRoutes(store.getters.addRouters)
const redirect = decodeURIComponent(from.query.redirect || to.path)
if (to.path === redirect) {
// hack方法 确保addRoutes已完成 ,set the replace: true so the navigation will not leave a history record
next({ ...to, replace: true })
} else {
// 跳转到目的路由
next({ path: redirect })
}
})
})
.catch(() => {
notification.error({
message: '错误',
description: '请求用户信息失败,请重试'
})
store.dispatch('Logout').then(() => {
next({ path: loginRoutePath, query: { redirect: to.fullPath } })
})
})
} else {
next()
}
}
} else {
if (allowList.includes(to.name)) {
// 在免登录白名单,直接进入
next()
} else {
next({ path: loginRoutePath, query: { redirect: to.fullPath } })
NProgress.done() // if current page is login will not trigger afterEach hook, so manually handle it
}
}
})
router.afterEach(() => {
NProgress.done() // finish progress bar
})