事故接警单
parent
9d8316826a
commit
9b74e3b9dc
@ -0,0 +1,16 @@
|
||||
import React from 'react';
|
||||
import styles from './EventNotification.less';
|
||||
|
||||
const EventNotification = () => {
|
||||
return (
|
||||
<div className={styles.container}>
|
||||
<div className={styles.content}>
|
||||
<h2>事件通知</h2>
|
||||
{/* 这里可以添加具体的内容 */}
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
export default EventNotification;
|
||||
|
||||
@ -0,0 +1,12 @@
|
||||
.container {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
padding: 20px;
|
||||
|
||||
.content {
|
||||
background-color: #fff;
|
||||
padding: 20px;
|
||||
border-radius: 8px;
|
||||
}
|
||||
}
|
||||
|
||||
@ -0,0 +1,16 @@
|
||||
import React from 'react';
|
||||
import styles from './EventWarningManagement.less';
|
||||
|
||||
const EventWarningManagement = () => {
|
||||
return (
|
||||
<div className={styles.container}>
|
||||
<div className={styles.content}>
|
||||
<h2>事件预警管理</h2>
|
||||
{/* 这里可以添加具体的内容 */}
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
export default EventWarningManagement;
|
||||
|
||||
@ -0,0 +1,12 @@
|
||||
.container {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
padding: 20px;
|
||||
|
||||
.content {
|
||||
background-color: #fff;
|
||||
padding: 20px;
|
||||
border-radius: 8px;
|
||||
}
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue