12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- import { RouterType } from "@/types";
- import React from "react";
- const tabLeftArr: RouterType = [
- {
- id: 1,
- name: "业务配置",
- son: [
- {
- id: 100,
- name: "用户管理",
- path: "/",
- Com: React.lazy(() => import("../A1wxuser")),
- },
- {
- id: 200,
- name: "积分管理",
- path: "/integral",
- Com: React.lazy(() => import("../A2integral")),
- },
- {
- id: 300,
- name: "积分记录",
- path: "/record",
- Com: React.lazy(() => import("../A3record")),
- },
- {
- id: 400,
- name: "积分商城",
- path: "/store",
- Com: React.lazy(() => import("../A4store")),
- },
- {
- id: 500,
- name: "兑换记录",
- path: "/cash",
- Com: React.lazy(() => import("../A5cash")),
- },
- {
- id: 600,
- name: "留言反馈",
- path: "/message",
- Com: React.lazy(() => import("../A6message")),
- },
- {
- id: 700,
- name: "云学习管理",
- path: "/school",
- Com: React.lazy(() => import("../A7school")),
-
- },
- // {
- // id: 800,
- // name: "云城介绍",
- // path: "/store",
- // Com: React.lazy(() => import("../A4store")),
- //
- // },
- // {
- // id: 900,
- // name: "数据看板",
- // path: "/store",
- // Com: React.lazy(() => import("../A4store")),
- //
- // },
- ],
- },
- {
- id: 2,
- name: "系统管理",
- son: [
- {
- id: 2100,
- name: "后台账户管理",
- path: "/user",
- Com: React.lazy(() => import("../Z1user")),
- },
- {
- id: 2200,
- name: "系统日志",
- path: "/log",
- Com: React.lazy(() => import("../Z2log")),
- },
- ],
- },
- ];
- export default tabLeftArr;
|