| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- import { RouterType, RouterTypeRow } from '@/types'
- import React from 'react'
- const tabLeftArr: RouterType = [
- {
- id: 6,
- name: '藏品盘点',
- son: [
- {
- id: 1,
- name: '盘库总账',
- path: '/',
- Com: React.lazy(() => import('../A1check/A1ledger'))
- },
- {
- id: 2,
- name: '盘库管理',
- path: '/manage',
- Com: React.lazy(() => import('../A1check/A2manage'))
- },
- {
- id: 3,
- name: '盘库结果',
- path: '/result',
- Com: React.lazy(() => import('../A1check/A3result'))
- },
- {
- id: 4,
- name: '盘点识别',
- path: '/discern',
- Com: React.lazy(() => import('../AAnew/AA1onePu'))
- }
- ]
- },
- {
- id: 7,
- name: '系统设置',
- son: [
- {
- id: 740,
- name: '部门管理',
- path: '/organization',
- Com: React.lazy(() => import('../Z_system/Z4organization'))
- },
- {
- id: 760,
- name: '用户管理',
- path: '/user',
- Com: React.lazy(() => import('../Z_system/Z6user'))
- },
- // 不需要 高亮的 详情页
- {
- id: 9901,
- name: '藏品详情',
- path: '/goodsLook/:id',
- pathLast: '/goodsLook',
- Com: React.lazy(() => import('../ZgoodsInfo'))
- }
- ]
- }
- ]
- export default tabLeftArr
- // 里面的页面,不是左边的tab栏
- export const routerSon: RouterTypeRow[] = []
|