通知中心
This commit is contained in:
@ -1,11 +1,9 @@
|
||||
import React, { useState, useEffect } from 'react';
|
||||
import { Table, Menu, Typography, Row, Col, Card } from 'antd';
|
||||
import { Table, Menu, Row, Col } from 'antd';
|
||||
import { history } from 'umi';
|
||||
import { BellOutlined, AppstoreOutlined } from '@ant-design/icons';
|
||||
import styles from './notice.less';
|
||||
|
||||
const { Title } = Typography;
|
||||
|
||||
// 模拟系统更新通知数据
|
||||
const mockSystemNotices = [
|
||||
{
|
||||
@ -150,7 +148,7 @@ const NoticePage: React.FC = () => {
|
||||
|
||||
return (
|
||||
<div className={styles.noticeContainer}>
|
||||
<Row className={styles.noticeRow}>
|
||||
<Row gutter={10} className={styles.noticeRow}>
|
||||
<Col span={3} className={styles.menuCol}>
|
||||
<Menu
|
||||
mode="vertical"
|
||||
@ -182,7 +180,6 @@ const NoticePage: React.FC = () => {
|
||||
loading={loading}
|
||||
onChange={handleTableChange}
|
||||
bordered
|
||||
className={styles.noticeTable}
|
||||
/>
|
||||
</div>
|
||||
</Col>
|
||||
|
Reference in New Issue
Block a user