| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- /**
- * 首选项 - 占位组件集合
- */
- import React from 'react';
- import PlaceholderSection from '../PlaceholderSection';
- import NewInspection from './NewInspection';
- import WorkflowComponent from './Workflow';
- import LanguageSettings from './LanguageSettings';
- // 通用设置
- export const GeneralSettings: React.FC = () => (
- <PlaceholderSection title="通用设置" />
- );
- // 流程检查
- export const WorkflowInspection: React.FC = () => <NewInspection />;
- // 工作流
- export const Workflow: React.FC = () => <WorkflowComponent />;
- // 用户信息
- export const UserInfo: React.FC = () => (
- <PlaceholderSection title="用户信息" />
- );
- // 添加备注
- export const AddRemarks: React.FC = () => (
- <PlaceholderSection title="添加备注" />
- );
- // 查看和处理
- export const ViewAndProcess: React.FC = () => (
- <PlaceholderSection title="查看和处理" />
- );
- // 报告
- export const Report: React.FC = () => (
- <PlaceholderSection title="报告" />
- );
- // 语言设置
- export const LanguageSettingsComponent: React.FC = () => <LanguageSettings />;
|