index.js 7.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378
  1. import { createRouter, createWebHashHistory } from "vue-router";
  2. import config from "~/configs"
  3. import Layout from "~/views/index.vue"
  4. import LayoutHeader from '~/components/layouts/LayoutHeader.vue'
  5. import LayoutEditor from '~/components/layouts/LayoutEditor.vue'
  6. const routes = [
  7. // index
  8. {
  9. path: '/',
  10. meta: {
  11. title: '首页'
  12. },
  13. component: Layout,
  14. children: [
  15. {
  16. path: '/',
  17. name: "Home",
  18. meta: {
  19. },
  20. component: () => import('~/views/index/content.vue')
  21. },
  22. {
  23. path: 'follow',
  24. name: "Follow",
  25. meta: {
  26. title: '我的关注'
  27. },
  28. component: () => import('~/views/index/follow.vue')
  29. }
  30. ]
  31. },
  32. //通知
  33. {
  34. path: '/inform',
  35. meta: {
  36. title: '通知'
  37. },
  38. component: Layout,
  39. children: [
  40. {
  41. path: '',
  42. name: 'inform',
  43. component: () => import('~/views/tongzhi/index.vue')
  44. },
  45. ]
  46. },
  47. // articles 文章
  48. {
  49. path: '/articles',
  50. meta: {
  51. title: '文章'
  52. },
  53. component: Layout,
  54. children: [
  55. {
  56. path: '',
  57. name: 'Articles',
  58. component: () => import('~/views/articles/index.vue')
  59. },
  60. {
  61. path: '/Articles',
  62. name: 'articles',
  63. component: () => import('~/views/postDetail.vue')
  64. },
  65. {
  66. path: '/moreArticles',
  67. name: 'moreArticles',
  68. component: () => import('~/views/more.vue')
  69. },
  70. ]
  71. },
  72. // zixun 资讯
  73. {
  74. path: '/zixun',
  75. meta: {
  76. title: '资讯'
  77. },
  78. component: Layout,
  79. children: [
  80. {
  81. path: '',
  82. name: 'Zixun',
  83. component: () => import('~/views/zixun/index.vue')
  84. },
  85. {
  86. path: '/news',
  87. name: 'news',
  88. component: () => import('~/views/postDetail.vue')
  89. },
  90. {
  91. path: '/more',
  92. name: 'more',
  93. component: () => import('~/views/zixun.vue')
  94. }
  95. ]
  96. },
  97. // news 新闻
  98. // videos 视频
  99. {
  100. path: '/video',
  101. meta: {
  102. title: '视频'
  103. },
  104. component: Layout,
  105. children: [
  106. {
  107. path: '',
  108. name: 'video',
  109. component: () => import('~/views/video/index.vue')
  110. },
  111. {
  112. path: '/videos',
  113. name: 'videos',
  114. component: () => import('~/views/postDetail.vue')
  115. }
  116. ]
  117. },
  118. // forum 论坛
  119. {
  120. path: '/forum',
  121. meta: {
  122. title: '论坛'
  123. },
  124. component: Layout,
  125. children: [
  126. {
  127. path: '',
  128. name: 'Forum',
  129. component: () => import('~/views/forum/index.vue')
  130. },
  131. {
  132. path: '/forum/edit',
  133. name: 'ForumEdit',
  134. component: () => import('~/views/forum/edit.vue')
  135. },
  136. {
  137. path: '/forum/topic/:id',
  138. name: 'ForumTopic',
  139. component: () => import('~/views/forum/topic.vue')
  140. },
  141. {
  142. path: '/topic',
  143. name: 'topic',
  144. component: () => import('~/views/postDetail.vue')
  145. }
  146. ]
  147. },
  148. // market 商品
  149. // points-mill 积分商城
  150. {
  151. path: '/store',
  152. meta: {
  153. title: '商城'
  154. },
  155. component: Layout,
  156. children: [
  157. {
  158. path: '/store/outshoping',
  159. meta: {
  160. title: '外部商城'
  161. },
  162. name: 'OutShoping',
  163. component: () => import('~/views/market/outshoping.vue')
  164. },
  165. {
  166. path: '/store/pointshoping',
  167. meta: {
  168. title: '积分商城'
  169. },
  170. name: 'PointShoping',
  171. component: () => import('~/views/market/index.vue')
  172. },
  173. {
  174. path: '/store/pointshoping/:id',
  175. meta: {
  176. title: '详情 - 积分商城'
  177. },
  178. name: 'PointShopingDetail',
  179. component: () => import('~/views/market/details.vue')
  180. },
  181. {
  182. path: '/store/pointshoping/placeorder',
  183. meta: {
  184. title: '结算订单'
  185. },
  186. name: 'PlaceOrder',
  187. component: () => import('~/views/market/placeOrder.vue')
  188. },
  189. {
  190. path: '/conversion',
  191. meta: {
  192. title: '兑换记录'
  193. },
  194. name: 'conversion',
  195. component: () => import('~/views/market/conversion.vue')
  196. }
  197. ]
  198. },
  199. // reservation 预约拍摄/预约租赁
  200. {
  201. path: '/reservation',
  202. meta: {
  203. title: '设备租赁'
  204. },
  205. component: Layout,
  206. children: [
  207. {
  208. path: '',
  209. name: 'reservation',
  210. component: () => import('~/views/reservation/index.vue')
  211. }
  212. ]
  213. },
  214. //聊天
  215. {
  216. path: '/chat',
  217. meta: {
  218. title: '私信'
  219. },
  220. component: Layout,
  221. children: [
  222. {
  223. path: '',
  224. name: 'chat',
  225. component: () => import('~/views/tongzhi/chat.vue')
  226. },
  227. ]
  228. },
  229. // 个人中心
  230. {
  231. path: '/personal',
  232. meta: {
  233. title: '个人中心',
  234. },
  235. component: Layout,
  236. children: [
  237. {
  238. path: '',
  239. name: 'PersonalContent',
  240. component: () => import('~/views/personal/index.vue')
  241. },
  242. {
  243. path: '/discount',
  244. name: 'discount',
  245. component: () => import('~/views/personal/discount.vue')
  246. },
  247. {
  248. path: '/wallet',
  249. name: 'wallet',
  250. component: () => import('~/views/personal/wallect.vue')
  251. },
  252. // {
  253. // path: '/footprint',
  254. // name: 'footprint',
  255. // component: () => import('~/views/personal/footprint.vue')
  256. // },
  257. {
  258. path: '/sign',
  259. name: 'sign',
  260. component: () => import('~/views/personal/sign.vue')
  261. },
  262. {
  263. path: '/make',//预约
  264. name: 'make',
  265. component: () => import('~/views/personal/make.vue')
  266. },
  267. {
  268. path: '/join',//加入忆象
  269. name: 'join',
  270. component: () => import('~/views/personal/join.vue')
  271. },
  272. {
  273. path: '/commonProblem',//常见问题
  274. name: 'commonProblem',
  275. component: () => import('~/views/personal/commonProblem.vue')
  276. },
  277. {
  278. path: '/setting',//个人设置
  279. name: 'setting',
  280. component: () => import('~/views/personal/setting.vue')
  281. },
  282. {
  283. path: '/videoManagement',//视频管理
  284. name: 'videoManagement',
  285. component: () => import('~/views/personal/video.vue')
  286. },
  287. {
  288. path: '/foot',//我的足迹
  289. name: 'foot',
  290. component: () => import('~/views/personal/foot.vue')
  291. },
  292. {
  293. path: '/urlManagement',//地址管理
  294. name: 'urlManagement',
  295. component: () => import('~/views/personal/address.vue')
  296. }
  297. ]
  298. },
  299. {
  300. path: '/invite',
  301. component: Layout,
  302. children: [
  303. {
  304. path: '',
  305. name: 'invite',
  306. component: () => import('~/views/personal/inviteinfo.vue')
  307. }
  308. ]
  309. },
  310. // argument
  311. {
  312. path: '/argument',
  313. component: LayoutHeader,
  314. children: [
  315. {
  316. path: '',
  317. name: 'Arguments',
  318. component: () => import('~/views/agreement/index.vue')
  319. }
  320. ]
  321. },
  322. // editor
  323. {
  324. path: '/editor',
  325. component: LayoutEditor,
  326. children: [
  327. {
  328. path: '',
  329. name: 'Editor',
  330. component: () => import('~/views/sundry/editor.vue')
  331. }
  332. ]
  333. }
  334. ]
  335. const router = createRouter({
  336. history: createWebHashHistory(),
  337. routes
  338. })
  339. router.beforeEach((to, from, next) => {
  340. let title = ''
  341. if (to.meta.title) {
  342. title = `${to.meta.title} | ${config.title} `
  343. } else {
  344. title = ` ${config.title} `
  345. }
  346. document.title = title;
  347. //const role = localStorage.getItem('ms_username');
  348. // console.log("===========", role)
  349. // const permiss = usePermissStore();
  350. // console.log("to.meta.permiss==", to.meta.permiss);
  351. // console.log("!permiss.key.includes(to.meta.permiss)==", !permiss.key.includes(to.meta.permiss));
  352. next();
  353. /**
  354. if (!role && to.path !== '/login') {
  355. next('/login');
  356. } else if (to.meta.permiss && !permiss.key.includes(to.meta.permiss)) {
  357. // 如果没有权限,则进入403
  358. next('/403');
  359. } else {
  360. next();
  361. }
  362. **/
  363. });
  364. export default router