analysis.ts 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. const Layout = () => import("@/layout/index.vue");
  2. export default {
  3. path: "/analysis",
  4. name: "analysis",
  5. component: Layout,
  6. meta: {
  7. title: "数据分析处理",
  8. icon: "Monitor",
  9. },
  10. redirect: "/analysis/task",
  11. children: [
  12. {
  13. path: "task",
  14. component: () => import("@/views/analysis/spc/index.vue"),
  15. name: "SPCTask",
  16. meta: {
  17. title: "SPC任务管理",
  18. icon: "Guide",
  19. },
  20. },
  21. {
  22. path: "spcrules",
  23. component: () => import("@/views/analysis/spcRules/index.vue"),
  24. name: "SPCrules",
  25. meta: {
  26. title: "SPC预警规则",
  27. icon: "Guide",
  28. },
  29. show: false,
  30. },
  31. {
  32. path: "process",
  33. component: () => import("@/views/analysis/process/index.vue"),
  34. name: "Process",
  35. meta: {
  36. title: "SPC控制图",
  37. icon: "Guide",
  38. },
  39. },
  40. {
  41. path: "task",
  42. name: "target",
  43. meta: {
  44. title: "过程能力指标",
  45. icon: "Guide",
  46. },
  47. children: [
  48. {
  49. path: "task",
  50. component: () => import("@/views/analysis/target/index/index.vue"),
  51. name: "Target",
  52. meta: {
  53. title: "过程能力指标",
  54. icon: "Guide",
  55. },
  56. },
  57. ],
  58. },
  59. {
  60. path: "sales",
  61. component: () => import("@/views/sales/index.vue"),
  62. name: "Sales",
  63. meta: {
  64. title: "销售反馈",
  65. icon: "Guide",
  66. },
  67. },
  68. {
  69. path: "unqualified",
  70. component: () => import("@/views/unqualified/index.vue"),
  71. name: "Unqualified",
  72. meta: {
  73. title: "不合格处置",
  74. icon: "Guide",
  75. },
  76. },
  77. ],
  78. };