import { Settings2 } from "lucide-react" import type { RoleView, WorkflowConfig } from "@/App" import { Badge } from "@/components/ui/badge" import { Button } from "@/components/ui/button" import { Card, CardContent, CardDescription, CardHeader, CardTitle } from "@/components/ui/card" import { Input } from "@/components/ui/input" type SystemSettingsProps = { roleView: RoleView onRoleViewChange: (role: RoleView) => void workflowConfig: WorkflowConfig onWorkflowConfigChange: (next: WorkflowConfig) => void auditLogs: string[] } export function SystemSettings({ roleView, onRoleViewChange, workflowConfig, onWorkflowConfigChange, auditLogs, }: SystemSettingsProps) { return (
管理角色视角、审核发布策略与同步规则。
需要确认:同步完成后进入待确认队列,由项目与运维负责人核查差异摘要并手动放行。