生产管理系统 - 评审前可用版提交
This commit is contained in:
@@ -8,116 +8,6 @@ export const metadata: Metadata = {
|
||||
|
||||
export default function CentralConfigPage() {
|
||||
return (
|
||||
<div className="space-y-6">
|
||||
<div className="bg-white rounded-lg shadow p-6">
|
||||
<h2 className="text-xl font-semibold text-gray-800 mb-4">
|
||||
中心配置管理系统
|
||||
</h2>
|
||||
<p className="text-gray-600 mb-6">
|
||||
租户管理、用户权限、系统参数和消息中心配置
|
||||
</p>
|
||||
|
||||
<div className="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
|
||||
<Link
|
||||
href="/central-config/tenant-management"
|
||||
className="block p-4 bg-green-50 rounded-lg hover:bg-green-100 transition-colors"
|
||||
>
|
||||
<h3 className="font-semibold text-green-900 mb-2">
|
||||
🏢 租户管理
|
||||
</h3>
|
||||
<p className="text-green-700 text-sm">
|
||||
租户创建、配置和授权管理
|
||||
</p>
|
||||
</Link>
|
||||
|
||||
<Link
|
||||
href="/central-config/user-management"
|
||||
className="block p-4 bg-blue-50 rounded-lg hover:bg-blue-100 transition-colors"
|
||||
>
|
||||
<h3 className="font-semibold text-blue-900 mb-2">
|
||||
👥 用户管理
|
||||
</h3>
|
||||
<p className="text-blue-700 text-sm">
|
||||
用户账号和角色权限管理
|
||||
</p>
|
||||
</Link>
|
||||
|
||||
<Link
|
||||
href="/central-config/system-parameters"
|
||||
className="block p-4 bg-purple-50 rounded-lg hover:bg-purple-100 transition-colors"
|
||||
>
|
||||
<h3 className="font-semibold text-purple-900 mb-2">
|
||||
🔧 系统参数
|
||||
</h3>
|
||||
<p className="text-purple-700 text-sm">
|
||||
基础配置和业务规则设置
|
||||
</p>
|
||||
</Link>
|
||||
|
||||
<Link
|
||||
href="/central-config/system-monitoring"
|
||||
className="block p-4 bg-orange-50 rounded-lg hover:bg-orange-100 transition-colors"
|
||||
>
|
||||
<h3 className="font-semibold text-orange-900 mb-2">
|
||||
📈 系统监控
|
||||
</h3>
|
||||
<p className="text-orange-700 text-sm">
|
||||
性能监控和日志管理
|
||||
</p>
|
||||
</Link>
|
||||
|
||||
<Link
|
||||
href="/central-config/message-center"
|
||||
className="block p-4 bg-teal-50 rounded-lg hover:bg-teal-100 transition-colors"
|
||||
>
|
||||
<h3 className="font-semibold text-teal-900 mb-2">
|
||||
📨 消息中心
|
||||
</h3>
|
||||
<p className="text-teal-700 text-sm">
|
||||
消息推送和通知设置管理
|
||||
</p>
|
||||
</Link>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div className="grid grid-cols-1 md:grid-cols-2 gap-6">
|
||||
<div className="bg-white rounded-lg shadow p-6">
|
||||
<h3 className="text-lg font-semibold text-gray-800 mb-4">
|
||||
📊 系统概览
|
||||
</h3>
|
||||
<div className="space-y-2">
|
||||
<div className="flex justify-between items-center">
|
||||
<span className="text-gray-600">活跃租户</span>
|
||||
<span className="text-green-600 font-semibold">12 个</span>
|
||||
</div>
|
||||
<div className="flex justify-between items-center">
|
||||
<span className="text-gray-600">注册用户</span>
|
||||
<span className="text-blue-600 font-semibold">248 人</span>
|
||||
</div>
|
||||
<div className="flex justify-between items-center">
|
||||
<span className="text-gray-600">系统运行时间</span>
|
||||
<span className="text-purple-600 font-semibold">99.8%</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div className="bg-white rounded-lg shadow p-6">
|
||||
<h3 className="text-lg font-semibold text-gray-800 mb-4">
|
||||
🔧 快速操作
|
||||
</h3>
|
||||
<div className="space-y-2">
|
||||
<button className="w-full px-4 py-2 bg-green-600 text-white rounded hover:bg-green-700 transition-colors">
|
||||
添加新用户
|
||||
</button>
|
||||
<button className="w-full px-4 py-2 bg-blue-600 text-white rounded hover:bg-blue-700 transition-colors">
|
||||
系统配置
|
||||
</button>
|
||||
<button className="w-full px-4 py-2 bg-purple-600 text-white rounded hover:bg-purple-700 transition-colors">
|
||||
查看日志
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div>一级菜单不具备功能,请移步三级菜单使用!谢谢!</div>
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user