12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- const Layout = () => import("@/layout/index.vue");
- export default {
- path: "/analysis",
- name: "analysis",
- component: Layout,
- meta: {
- title: "数据分析处理",
- icon: "Monitor",
- },
- redirect: "/analysis/task",
- children: [
- {
- path: "task",
- component: () => import("@/views/analysis/spc/index.vue"),
- name: "SPCTask",
- meta: {
- title: "SPC任务管理",
- icon: "Guide",
- },
- },
- {
- path: "spcrules",
- component: () => import("@/views/analysis/spcRules/index.vue"),
- name: "SPCrules",
- meta: {
- title: "SPC预警规则",
- icon: "Guide",
- },
- show: false,
- },
- {
- path: "process",
- component: () => import("@/views/analysis/process/index.vue"),
- name: "Process",
- meta: {
- title: "SPC控制图",
- icon: "Guide",
- },
- },
- {
- path: "task",
- name: "target",
- meta: {
- title: "过程能力指标",
- icon: "Guide",
- },
- children: [
- {
- path: "task",
- component: () => import("@/views/analysis/target/index/index.vue"),
- name: "Target",
- meta: {
- title: "过程能力指标",
- icon: "Guide",
- },
- },
- ],
- },
- {
- path: "sales",
- component: () => import("@/views/sales/index.vue"),
- name: "Sales",
- meta: {
- title: "销售反馈",
- icon: "Guide",
- },
- },
- {
- path: "unqualified",
- component: () => import("@/views/unqualified/index.vue"),
- name: "Unqualified",
- meta: {
- title: "不合格处置",
- icon: "Guide",
- },
- },
- ],
- };
|