123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378 |
- import { createRouter, createWebHashHistory } from "vue-router";
- import config from "~/configs"
- import Layout from "~/views/index.vue"
- import LayoutHeader from '~/components/layouts/LayoutHeader.vue'
- import LayoutEditor from '~/components/layouts/LayoutEditor.vue'
- const routes = [
- // index
- {
- path: '/',
- meta: {
- title: '首页'
- },
- component: Layout,
- children: [
- {
- path: '/',
- name: "Home",
- meta: {
- },
- component: () => import('~/views/index/content.vue')
- },
- {
- path: 'follow',
- name: "Follow",
- meta: {
- title: '我的关注'
- },
- component: () => import('~/views/index/follow.vue')
- }
- ]
- },
- //通知
- {
- path: '/inform',
- meta: {
- title: '通知'
- },
- component: Layout,
- children: [
- {
- path: '',
- name: 'inform',
- component: () => import('~/views/tongzhi/index.vue')
- },
- ]
- },
- // articles 文章
- {
- path: '/articles',
- meta: {
- title: '文章'
- },
- component: Layout,
- children: [
- {
- path: '',
- name: 'Articles',
- component: () => import('~/views/articles/index.vue')
- },
- {
- path: '/Articles',
- name: 'articles',
- component: () => import('~/views/postDetail.vue')
- },
- {
- path: '/moreArticles',
- name: 'moreArticles',
- component: () => import('~/views/more.vue')
- },
- ]
- },
- // zixun 资讯
- {
- path: '/zixun',
- meta: {
- title: '资讯'
- },
- component: Layout,
- children: [
- {
- path: '',
- name: 'Zixun',
- component: () => import('~/views/zixun/index.vue')
- },
- {
- path: '/news',
- name: 'news',
- component: () => import('~/views/postDetail.vue')
- },
- {
- path: '/more',
- name: 'more',
- component: () => import('~/views/zixun.vue')
- }
- ]
- },
- // news 新闻
- // videos 视频
- {
- path: '/video',
- meta: {
- title: '视频'
- },
- component: Layout,
- children: [
- {
- path: '',
- name: 'video',
- component: () => import('~/views/video/index.vue')
- },
- {
- path: '/videos',
- name: 'videos',
- component: () => import('~/views/postDetail.vue')
- }
- ]
- },
- // forum 论坛
- {
- path: '/forum',
- meta: {
- title: '论坛'
- },
- component: Layout,
- children: [
- {
- path: '',
- name: 'Forum',
- component: () => import('~/views/forum/index.vue')
- },
- {
- path: '/forum/edit',
- name: 'ForumEdit',
- component: () => import('~/views/forum/edit.vue')
- },
- {
- path: '/forum/topic/:id',
- name: 'ForumTopic',
- component: () => import('~/views/forum/topic.vue')
- },
- {
- path: '/topic',
- name: 'topic',
- component: () => import('~/views/postDetail.vue')
- }
- ]
- },
- // market 商品
- // points-mill 积分商城
- {
- path: '/store',
- meta: {
- title: '商城'
- },
- component: Layout,
- children: [
- {
- path: '/store/outshoping',
- meta: {
- title: '外部商城'
- },
- name: 'OutShoping',
- component: () => import('~/views/market/outshoping.vue')
- },
- {
- path: '/store/pointshoping',
- meta: {
- title: '积分商城'
- },
- name: 'PointShoping',
- component: () => import('~/views/market/index.vue')
- },
- {
- path: '/store/pointshoping/:id',
- meta: {
- title: '详情 - 积分商城'
- },
- name: 'PointShopingDetail',
- component: () => import('~/views/market/details.vue')
- },
- {
- path: '/store/pointshoping/placeorder',
- meta: {
- title: '结算订单'
- },
- name: 'PlaceOrder',
- component: () => import('~/views/market/placeOrder.vue')
- },
- {
- path: '/conversion',
- meta: {
- title: '兑换记录'
- },
- name: 'conversion',
- component: () => import('~/views/market/conversion.vue')
- }
- ]
- },
- // reservation 预约拍摄/预约租赁
- {
- path: '/reservation',
- meta: {
- title: '设备租赁'
- },
- component: Layout,
- children: [
- {
- path: '',
- name: 'reservation',
- component: () => import('~/views/reservation/index.vue')
- }
- ]
- },
- //聊天
- {
- path: '/chat',
- meta: {
- title: '私信'
- },
- component: Layout,
- children: [
- {
- path: '',
- name: 'chat',
- component: () => import('~/views/tongzhi/chat.vue')
- },
- ]
- },
- // 个人中心
- {
- path: '/personal',
- meta: {
- title: '个人中心',
- },
- component: Layout,
- children: [
- {
- path: '',
- name: 'PersonalContent',
- component: () => import('~/views/personal/index.vue')
- },
- {
- path: '/discount',
- name: 'discount',
- component: () => import('~/views/personal/discount.vue')
- },
- {
- path: '/wallet',
- name: 'wallet',
- component: () => import('~/views/personal/wallect.vue')
- },
- // {
- // path: '/footprint',
- // name: 'footprint',
- // component: () => import('~/views/personal/footprint.vue')
- // },
- {
- path: '/sign',
- name: 'sign',
- component: () => import('~/views/personal/sign.vue')
- },
- {
- path: '/make',//预约
- name: 'make',
- component: () => import('~/views/personal/make.vue')
- },
- {
- path: '/join',//加入忆象
- name: 'join',
- component: () => import('~/views/personal/join.vue')
- },
- {
- path: '/commonProblem',//常见问题
- name: 'commonProblem',
- component: () => import('~/views/personal/commonProblem.vue')
- },
- {
- path: '/setting',//个人设置
- name: 'setting',
- component: () => import('~/views/personal/setting.vue')
- },
- {
- path: '/videoManagement',//视频管理
- name: 'videoManagement',
- component: () => import('~/views/personal/video.vue')
- },
- {
- path: '/foot',//我的足迹
- name: 'foot',
- component: () => import('~/views/personal/foot.vue')
- },
- {
- path: '/urlManagement',//地址管理
- name: 'urlManagement',
- component: () => import('~/views/personal/address.vue')
- }
- ]
- },
- {
- path: '/invite',
- component: Layout,
- children: [
- {
- path: '',
- name: 'invite',
- component: () => import('~/views/personal/inviteinfo.vue')
- }
- ]
- },
- // argument
- {
- path: '/argument',
- component: LayoutHeader,
- children: [
- {
- path: '',
- name: 'Arguments',
- component: () => import('~/views/agreement/index.vue')
- }
- ]
- },
- // editor
- {
- path: '/editor',
- component: LayoutEditor,
- children: [
- {
- path: '',
- name: 'Editor',
- component: () => import('~/views/sundry/editor.vue')
- }
- ]
- }
- ]
- const router = createRouter({
- history: createWebHashHistory(),
- routes
- })
- router.beforeEach((to, from, next) => {
- let title = ''
- if (to.meta.title) {
- title = `${to.meta.title} | ${config.title} `
- } else {
- title = ` ${config.title} `
- }
- document.title = title;
- //const role = localStorage.getItem('ms_username');
- // console.log("===========", role)
- // const permiss = usePermissStore();
- // console.log("to.meta.permiss==", to.meta.permiss);
- // console.log("!permiss.key.includes(to.meta.permiss)==", !permiss.key.includes(to.meta.permiss));
- next();
- /**
- if (!role && to.path !== '/login') {
- next('/login');
- } else if (to.meta.permiss && !permiss.key.includes(to.meta.permiss)) {
- // 如果没有权限,则进入403
- next('/403');
- } else {
- next();
- }
- **/
- });
- export default router
|