123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- 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: "/store",
- // Com: React.lazy(() => import("../A4store")),
- //
- // },
- // {
- // id: 700,
- // name: "学习资料",
- // path: "/store",
- // Com: React.lazy(() => import("../A4store")),
- //
- // },
- // {
- // 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;
|