You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
/*需要权限控制的路由表*/
|
|
|
|
|
import purchaseRouter from '@/router/modules/purchase'
|
|
|
|
|
import sellRouter from '@/router/modules/sell'
|
|
|
|
|
import stockRouter from '@/router/modules/stock'
|
|
|
|
|
import messageRouter from '@/router/modules/message'
|
|
|
|
|
import systemRouter from '@/router/modules/system'
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const authorityRoutes = [
|
|
|
|
|
purchaseRouter,
|
|
|
|
|
sellRouter,
|
|
|
|
|
stockRouter,
|
|
|
|
|
messageRouter,
|
|
|
|
|
systemRouter,
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
export default authorityRoutes
|