修复了登录页面还存在顶部导航栏的问题
This commit is contained in:
@@ -409,44 +409,50 @@ D:\code\repotest\smart-crop-ui\ # 原项目(保留不变)
|
||||
│ │ ├── 📄 page.tsx # 🆕 配置系统主页面
|
||||
│ │ ├── 📂 tenant-management/ # B级:租户管理
|
||||
│ │ │ ├── 📄 page.tsx # 🆕 租户管理主页
|
||||
│ │ │ ├── 📂 tenant-creation/ # C级:租户创建管理
|
||||
│ │ │ │ └── 📄 page.tsx
|
||||
│ │ │ ├── 📂 tenant-configuration/ # C级:租户配置管理
|
||||
│ │ │ │ └── 📄 page.tsx
|
||||
│ │ │ └── 📂 tenant-authorization/ # C级:租户授权管理
|
||||
│ │ │ └── 📄 page.tsx
|
||||
│ │ │ ├── 📂 enterprise-audit/ # C级:企业审核
|
||||
│ │ │ │ └── 📄 page.tsx # 路径: /config/tenant/enterprise-audit
|
||||
│ │ │ ├── 📂 audit-history/ # C级:审核历史
|
||||
│ │ │ │ └── 📄 page.tsx # 路径: /config/tenant/audit-history
|
||||
│ │ │ ├── 📂 enterprise-info/ # C级:企业信息
|
||||
│ │ │ │ └── 📄 page.tsx # 路径: /config/tenant/enterprise-info
|
||||
│ │ │ └── 📂 platform-user-management/ # C级:用户管理
|
||||
│ │ │ └── 📄 page.tsx # 路径: /config/tenant/user-management
|
||||
│ │ ├── 📂 user-management/ # B级:用户管理
|
||||
│ │ │ ├── 📄 page.tsx # 🆕 用户管理主页
|
||||
│ │ │ ├── 📂 user-account-management/ # C级:用户账号管理
|
||||
│ │ │ │ └── 📄 page.tsx
|
||||
│ │ │ ├── 📂 role-permission-management/ # C级:角色权限管理
|
||||
│ │ │ │ └── 📄 page.tsx
|
||||
│ │ │ └── 📂 user-behavior-tracking/ # C级:用户行为跟踪
|
||||
│ │ │ └── 📄 page.tsx
|
||||
│ │ │ ├── 📂 employee-management/ # C级:员工管理
|
||||
│ │ │ │ └── 📄 page.tsx # 路径: /config/user/employee
|
||||
│ │ │ ├── 📂 role-management/ # C级:角色管理
|
||||
│ │ │ │ └── 📄 page.tsx # 路径: /config/user/role
|
||||
│ │ │ ├── 📂 menu-management/ # C级:菜单管理
|
||||
│ │ │ │ └── 📄 page.tsx # 路径: /config/user/menu
|
||||
│ │ │ └── 📂 permission-config/ # C级:权限配置管理
|
||||
│ │ │ └── 📄 page.tsx # 路径: /config/user/permission
|
||||
│ │ ├── 📂 system-parameters/ # B级:系统参数
|
||||
│ │ │ ├── 📄 page.tsx # 🆕 系统参数主页
|
||||
│ │ │ ├── 📂 basic-configuration/ # C级:基础配置管理
|
||||
│ │ │ │ └── 📄 page.tsx
|
||||
│ │ │ ├── 📂 business-rule-settings/ # C级:业务规则设置
|
||||
│ │ │ │ └── 📄 page.tsx
|
||||
│ │ │ └── 📂 interface-configuration/ # C级:接口配置管理
|
||||
│ │ │ └── 📄 page.tsx
|
||||
│ │ ├── 📂 system-monitoring/ # B级:系统监控
|
||||
│ │ │ ├── 📂 system-settings/ # C级:系统设置
|
||||
│ │ │ │ └── 📄 page.tsx # 路径: /config/system/settings
|
||||
│ │ │ ├── 📂 category-dictionary/ # C级:分类字典
|
||||
│ │ │ │ └── 📄 page.tsx # 路径: /config/system/category
|
||||
│ │ │ └── 📂 data-dictionary/ # C级:数据字典
|
||||
│ │ │ └── 📄 page.tsx # 路径: /config/system/dictionary
|
||||
│ │ ├── 📂 system-monitor/ # B级:系统监控
|
||||
│ │ │ ├── 📄 page.tsx # 🆕 系统监控主页
|
||||
│ │ │ ├── 📂 performance-monitoring/ # C级:性能监控管理
|
||||
│ │ │ │ └── 📄 page.tsx
|
||||
│ │ │ ├── 📂 log-management/ # C级:日志管理
|
||||
│ │ │ │ └── 📄 page.tsx
|
||||
│ │ │ └── 📂 exception-handling/ # C级:异常处理管理
|
||||
│ │ │ └── 📄 page.tsx
|
||||
│ │ │ ├── 📂 login-log/ # C级:登录日志
|
||||
│ │ │ │ └── 📄 page.tsx # 路径: /config/monitor/login-log
|
||||
│ │ │ ├── 📂 operation-log/ # C级:操作日志
|
||||
│ │ │ │ └── 📄 page.tsx # 路径: /config/monitor/operation-log
|
||||
│ │ │ ├── 📂 performance-monitor/ # C级:性能监控
|
||||
│ │ │ │ └── 📄 page.tsx # 路径: /config/monitor/performance
|
||||
│ │ │ └── 📂 network-log/ # C级:网络日志
|
||||
│ │ │ └── 📄 page.tsx # 路径: /config/monitor/network-log
|
||||
│ │ └── 📂 message-center/ # B级:消息中心
|
||||
│ │ ├── 📄 page.tsx # 🆕 消息中心主页
|
||||
│ │ ├── 📂 message-push-management/ # C级:消息推送管理
|
||||
│ │ │ └── 📄 page.tsx
|
||||
│ │ ├── 📂 notification-settings/ # C级:通知设置管理
|
||||
│ │ │ └── 📄 page.tsx
|
||||
│ │ └── 📂 feedback-management/ # C级:反馈管理
|
||||
│ │ └── 📄 page.tsx
|
||||
│ │ ├── 📂 message-send/ # C级:消息发送
|
||||
│ │ │ └── 📄 page.tsx # 路径: /config/message/send
|
||||
│ │ ├── 📂 message-template/ # C级:消息模版
|
||||
│ │ │ └── 📄 page.tsx # 路径: /config/message/template
|
||||
│ │ └── 📂 message-log/ # C级:消息日志
|
||||
│ │ └── 📄 page.tsx # 路径: /config/message/log
|
||||
│ ├── 📂 components/ # 组件库
|
||||
│ │ ├── 📂 ui/ # 基础UI组件(shadcn)
|
||||
│ │ ├── 📂 layout/ # 布局组件
|
||||
|
||||
Reference in New Issue
Block a user