拆分SPC直方图和正态曲线页面

This commit is contained in:
zhangshun
2026-06-29 09:37:23 +08:00
parent 78c80cf5f7
commit 9192ccbe83
6 changed files with 145 additions and 44 deletions

View File

@@ -6,11 +6,15 @@ import XBarSView from "./views/XBarSView.vue";
import SChartView from "./views/SChartView.vue";
import CpkView from "./views/CpkView.vue";
import RunChartView from "./views/RunChartView.vue";
import HistogramView from "./views/HistogramView.vue";
import NormalCurveView from "./views/NormalCurveView.vue";
export const routes = [
{ path: "/", redirect: "/overview" },
{ path: "/overview", component: OverviewView, meta: { title: "总览" } },
{ path: "/run-chart", component: RunChartView, meta: { title: "趋势图" } },
{ path: "/histogram", component: HistogramView, meta: { title: "直方图" } },
{ path: "/normal-curve", component: NormalCurveView, meta: { title: "正态曲线" } },
{ path: "/xbar-r", component: XBarRView, meta: { title: "Xbar-R" } },
{ path: "/r-chart", component: RChartView, meta: { title: "R 图" } },
{ path: "/xbar-s", component: XBarSView, meta: { title: "Xbar-S" } },