You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
1.3 KiB
JavaScript

1 month ago
import React from 'react'; // ======== 导入React库用于创建React组件 ========
import { Card, Result } from 'antd'; // ======== 导入Ant Design的Card和Result组件 ========
const ResponsibilityImplementation = () => { // ======== 定义责任落实组件函数 ========
return ( // ======== 返回JSX结构 ========
<div style={{ padding: '24px' }}> // ======== 外层容器设置24px内边距 ========
<Card title="责任落实" style={{ minHeight: '400px' }}> // ======== Card组件标题为"责任落实"最小高度400px ========
<Result // ======== Result组件用于显示状态页面 ========
status="info" // ======== 设置状态为info信息类型 ========
title="责任落实模块" // ======== 设置标题 ========
subTitle="此功能正在开发中,敬请期待..." // ======== 设置副标题,提示开发中 ========
/> // ======== Result组件结束 ========
</Card> // ======== Card组件结束 ========
</div> // ======== 外层容器结束 ========
); // ======== return语句结束 ========
}; // ======== 组件函数结束 ========
export default ResponsibilityImplementation; // ======== 导出组件供其他文件使用 ========