index.tsx 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. /**
  2. * 首选项 - 占位组件集合
  3. */
  4. import React from 'react';
  5. import PlaceholderSection from '../PlaceholderSection';
  6. import NewInspection from './NewInspection';
  7. import WorkflowComponent from './Workflow';
  8. import LanguageSettings from './LanguageSettings';
  9. // 通用设置
  10. export const GeneralSettings: React.FC = () => (
  11. <PlaceholderSection title="通用设置" />
  12. );
  13. // 流程检查
  14. export const WorkflowInspection: React.FC = () => <NewInspection />;
  15. // 工作流
  16. export const Workflow: React.FC = () => <WorkflowComponent />;
  17. // 用户信息
  18. export const UserInfo: React.FC = () => (
  19. <PlaceholderSection title="用户信息" />
  20. );
  21. // 添加备注
  22. export const AddRemarks: React.FC = () => (
  23. <PlaceholderSection title="添加备注" />
  24. );
  25. // 查看和处理
  26. export const ViewAndProcess: React.FC = () => (
  27. <PlaceholderSection title="查看和处理" />
  28. );
  29. // 报告
  30. export const Report: React.FC = () => (
  31. <PlaceholderSection title="报告" />
  32. );
  33. // 语言设置
  34. export const LanguageSettingsComponent: React.FC = () => <LanguageSettings />;