整理框架和新建基础模块

This commit is contained in:
linxd
2025-06-17 18:32:33 +08:00
parent 08424ecdb8
commit ebc4dfe1f9
51 changed files with 2200 additions and 2850 deletions

View File

@ -0,0 +1,11 @@
.notice-manage-container {
padding: 24px;
.notice-manage-content {
background: #fff;
padding: 24px;
min-height: 500px;
border-radius: 4px;
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}
}

View File

@ -0,0 +1,18 @@
import React from 'react';
import { useIntl } from 'umi';
import './noticeManage.less';
const NoticeManage: React.FC = () => {
const intl = useIntl();
return (
<div className="notice-manage-container">
<h1>{intl.formatMessage({ id: 'menu.通知中心管理' })}</h1>
<div className="notice-manage-content">
{/* 通知中心管理内容 */}
</div>
</div>
);
};
export default NoticeManage;