|
@@ -1,27 +1,27 @@
|
|
|
-import Layout from "@/layout";
|
|
|
+import Layout from '@/layout'
|
|
|
|
|
|
const HomeRoutes = {
|
|
|
- path: "/statisticalanalysis",
|
|
|
+ path: '/statisticalanalysis',
|
|
|
component: Layout,
|
|
|
- name: "statisticalanalysis",
|
|
|
- redirect: "/statisticalanalysis",
|
|
|
+ name: 'statisticalanalysis',
|
|
|
+ redirect: '/statisticalanalysis',
|
|
|
//using el svg icon, the elSvgIcon first when at the same time using elSvgIcon and icon
|
|
|
meta: {
|
|
|
- title: "统计分析",
|
|
|
- elSvgIcon: "analyseIcon",
|
|
|
- roles: ['statistic_alanalysis_page']
|
|
|
+ title: '统计分析',
|
|
|
+ elSvgIcon: 'analyseIcon',
|
|
|
+ roles: ['statistical_analysis_page'],
|
|
|
},
|
|
|
children: [
|
|
|
{
|
|
|
- path: "/statisticalanalysis",
|
|
|
- name: "specialgoods",
|
|
|
+ path: '/statisticalanalysis',
|
|
|
+ name: 'specialgoods',
|
|
|
meta: {
|
|
|
- title: "统计分析",
|
|
|
+ title: '统计分析',
|
|
|
},
|
|
|
component: () =>
|
|
|
- import("@/views/statisticalanalysis/specialgoods/index.vue"),
|
|
|
+ import('@/views/statisticalanalysis/specialgoods/index.vue'),
|
|
|
},
|
|
|
],
|
|
|
-};
|
|
|
+}
|
|
|
|
|
|
-export default [HomeRoutes];
|
|
|
+export default [HomeRoutes]
|