index.js 7.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326
  1. import Vue from 'vue'
  2. import Router from 'vue-router'
  3. // 运营商
  4. import YysSosAlarm from '@/pages/yys/alarm/sos_alarm'
  5. Vue.use(Router)
  6. export default new Router({
  7. mode: 'hash',
  8. routes: [
  9. {
  10. path: "/",
  11. name: "index",
  12. component: () => import('@/pages/kede/common/layout'),
  13. redirect:"/location",
  14. children:[
  15. {
  16. path: "/location",
  17. name:"location",
  18. component: () => import("@/pages/kede/location"),
  19. },
  20. {
  21. path: "/more",
  22. name:"more",
  23. component: () => import("@/pages/kede/more"),
  24. },
  25. {
  26. path: "/chat",
  27. name:"chat",
  28. component: () => import("@/pages/kede/chat"),
  29. },
  30. {
  31. path: "/alarm",
  32. name:"alarm",
  33. component: () => import("@/pages/kede/alarm"),
  34. },
  35. {
  36. path: "/fence",
  37. name:"fence",
  38. component: () => import("@/pages/kede/fence"),
  39. },
  40. ],
  41. meta:{
  42. requireAuth: true,
  43. showHeader: true
  44. }
  45. },
  46. {
  47. path: "/first",
  48. name:"first",
  49. component: () => import("@/pages/kede/first"),
  50. },
  51. {
  52. path: '/login',
  53. name: 'login',
  54. component: () => import("@/pages/kede/login/login"),
  55. },
  56. {
  57. path: '/register',
  58. name: 'register',
  59. component: () => import("@/pages/kede/login/register"),
  60. },
  61. {
  62. path: '/reset_pwd',
  63. name: 'reset_pwd',
  64. component: () => import("@/pages/kede/login/reset_pwd"),
  65. },
  66. {
  67. path: '/edit_profile',
  68. name: 'profile',
  69. component: () => import("@/pages/kede/login/edit_profile"),
  70. },
  71. {
  72. path: "/route_search/:imei",
  73. name:"routesearch",
  74. component: () => import("@/pages/kede/route_search"),
  75. // "meta": {
  76. // "keepAlive": true // 需要缓存
  77. // }
  78. },
  79. {
  80. path: "/route_play",
  81. name:"routeplay",
  82. component: () => import("@/pages/kede/route_play"),
  83. },
  84. {
  85. path: "/fence_add",
  86. name:"fenceadd",
  87. component: () => import("@/pages/kede/fence_add"),
  88. },
  89. {
  90. path: "/fence_edit",
  91. name:"fenceedit",
  92. component: () => import("@/pages/kede/fence_edit"),
  93. },
  94. {
  95. path: "/sysfence_watch",
  96. name:"watchasysfence",
  97. component: () => import("@/pages/kede/sysfence_watch"),
  98. },
  99. {
  100. path: "/voice",
  101. name:"voice",
  102. component: () => import("@/pages/kede/voices_v2"),
  103. },
  104. {
  105. path: "/voice_clone/:imei/:name",
  106. name:"voice_clone",
  107. component: () => import("@/pages/kede/voices_bak"),
  108. },
  109. {
  110. path: "/devices",
  111. name:"devices",
  112. component: () => import("@/pages/kede/devices/index"),
  113. },
  114. {
  115. path: "/insure",
  116. name:"insure",
  117. component: () => import("@/pages/kede/insure/index"),
  118. },
  119. {
  120. path: "/buy_insure",
  121. name:"buyInsure",
  122. component: () => import("@/pages/kede/devices/buyInsure.vue"),
  123. },
  124. {
  125. path: '/news',
  126. name: 'news',
  127. meta: {
  128. keepAlive: true,
  129. },
  130. component: () => import("@/pages/kede/news/index.vue"),
  131. },
  132. {
  133. path: '/news_detail',
  134. name: 'news_detail',
  135. component: () => import("@/pages/kede/news/detail.vue"),
  136. },
  137. {
  138. path: '/activities',
  139. name: 'activities',
  140. component: () => import("@/pages/kede/activities/index.vue"),
  141. },
  142. {
  143. path: '/activities_detail',
  144. name: 'activities_detail',
  145. component: () => import("@/pages/kede/activities/detail.vue"),
  146. },
  147. {
  148. path: '/courses',
  149. name: 'courses',
  150. meta: {
  151. keepAlive: true,
  152. },
  153. component: () => import("@/pages/kede/courses"),
  154. },
  155. {
  156. path: '/courses_detail',
  157. name: 'courses_detail',
  158. component: () => import("@/pages/kede/courses/detail"),
  159. },
  160. {
  161. path: '/courses_video',
  162. name: 'courses_video',
  163. meta: {
  164. keepAlive: true,
  165. },
  166. component: () => import("@/pages/kede/courses/videos"),
  167. },
  168. {
  169. path: '/courses_video_detail',
  170. name: 'courses_video_detail',
  171. component: () => import("@/pages/kede/courses/videos/detail"),
  172. },
  173. {
  174. path: '/alarm_records',
  175. name: 'alarm_records',
  176. component: () => import("@/pages/kede/alarms/sos_index"),
  177. },
  178. {
  179. path: '/alarm_detail',
  180. name: 'alarm_detail',
  181. component: () => import("@/pages/kede/alarms/detail"),
  182. },
  183. {
  184. path: '/vehicle_verify',
  185. name: 'vehicle',
  186. component: () => import("@/pages/vehicle_temp/vehicle_verify"),
  187. },
  188. {
  189. path: '/vehicle_verify_decode',
  190. name: 'vehicledecode',
  191. component: () => import("@/pages/vehicle_temp/vehicle_verify_decode"),
  192. },
  193. // 运营商
  194. {
  195. path: "/yys",
  196. name: "yys",
  197. component : () => import('@/pages/kede/common/layout_yys'),
  198. redirect:"/yys_location",
  199. "meta": {
  200. role: 'yys',
  201. },
  202. children:[
  203. {
  204. path: "/yys_location",
  205. name:"yys_location",
  206. component: () => import("@/pages/kede/yys/location"),
  207. meta: {
  208. role: 'yys',
  209. },
  210. },
  211. {
  212. path: "/yys_more",
  213. name:"yys_more",
  214. component: () => import("@/pages/kede/yys/more"),
  215. meta: {
  216. role: 'yys',
  217. },
  218. },
  219. {
  220. path: "/yys_devices",
  221. name:"yys_devices",
  222. component: () => import("@/pages/kede/yys/devices"),
  223. meta: {
  224. role: 'yys',
  225. keepAlive: true,
  226. },
  227. },
  228. {
  229. path: "/yys_alarms",
  230. name:"yys_alarms",
  231. component: () => import("@/pages/kede/yys/alarms"),
  232. meta: {
  233. role: 'yys',
  234. keepAlive: true
  235. },
  236. },
  237. {
  238. path: "/yys_fences",
  239. name:"yys_fences",
  240. component: () => import("@/pages/kede/yys/fences"),
  241. meta: {
  242. role: 'yys',
  243. },
  244. },
  245. ],
  246. },
  247. {
  248. path: '/yys_login',
  249. name: 'yys_login',
  250. meta: {
  251. role: 'yys',
  252. },
  253. component: () => import("@/pages/kede/yys/login"),
  254. },
  255. {
  256. path: '/yys_profile',
  257. name: 'yys_profile',
  258. meta: {
  259. role: 'yys',
  260. },
  261. component: () => import("@/pages/kede/yys/profile.vue"),
  262. },
  263. {
  264. path: '/yys_add_pan',
  265. name: 'yys_add_pan',
  266. meta: {
  267. role: 'yys',
  268. },
  269. component: () => import("@/pages/kede/yys/alarms/add.vue"),
  270. },
  271. {
  272. path: '/yys_alarm_detail',
  273. name: 'yys_alarm_detail',
  274. meta: {
  275. role: 'yys',
  276. },
  277. component: () => import("@/pages/kede/yys/alarms/detail.vue"),
  278. },
  279. {
  280. path: '/yys_device_detail',
  281. name: 'yys_device_detail',
  282. meta: {
  283. role: 'yys',
  284. },
  285. component: () => import("@/pages/kede/yys/devices/detail.vue"),
  286. },
  287. {
  288. path: '/yys_route_play',
  289. name: 'yys_route_play',
  290. meta: {
  291. role: 'yys',
  292. },
  293. component: () => import("@/pages/kede/yys/routes/play.vue"),
  294. },
  295. {
  296. path: '/yys_route_search/:imei',
  297. name: 'yys_route_search',
  298. meta: {
  299. role: 'yys',
  300. },
  301. component: () => import("@/pages/kede/yys/routes/search.vue"),
  302. },
  303. {
  304. path: "/yys_fence_fenceshape",
  305. name:"yys_fence_fenceshape",
  306. component: () => import("@/pages/kede/yys/fences/fenceshape"),
  307. meta: {
  308. role: 'yys',
  309. },
  310. },
  311. {
  312. path: "/yys_fence_addedit",
  313. name:"yys_fence_addedit",
  314. component: () => import("@/pages/kede/yys/fences/addedit"),
  315. meta: {
  316. role: 'yys',
  317. },
  318. },
  319. ]
  320. })