完善购买产品二级路由页面

This commit is contained in:
Eamon
2026-08-12 13:49:04 +08:00
parent 4c9953ab57
commit 115ee3bfeb
13 changed files with 1376 additions and 26 deletions

View File

@@ -14,6 +14,8 @@ import IpLinePage from "@/home/ipLine"
import LayoutPage from "@/home/layout"
import LoginPage from "@/home/login"
import ProductPage from "@/home/product"
import HttpPage from "@/home/product/http"
import RouterosPage from "@/home/product/routeros"
import SoftDownloadPage from "@/home/softDownload"
export const router = createBrowserRouter([
{
@@ -22,6 +24,8 @@ export const router = createBrowserRouter([
children: [
{ index: true, element: <HomePage /> },
{ path: "product", element: <ProductPage /> },
{ path: "product/http", element: <HttpPage /> },
{ path: "product/routeros", element: <RouterosPage /> },
{ path: "ipline", element: <IpLinePage /> },
{ path: "softdownload", element: <SoftDownloadPage /> },
{ path: "help", element: <HelpPage /> },