master_basic
parent
591a315517
commit
5d9de7af25
@ -0,0 +1,45 @@
|
|||||||
|
.bottom_warp {
|
||||||
|
width: 100%;
|
||||||
|
height: 140px;
|
||||||
|
background: #FFFFFF;
|
||||||
|
border-radius: 2px 0px 0px 0px;
|
||||||
|
border-top: 1px solid #D8D8D8;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: space-between;
|
||||||
|
|
||||||
|
.item_con {
|
||||||
|
width: 50%;
|
||||||
|
height: 100%;
|
||||||
|
display: flex;
|
||||||
|
|
||||||
|
._img {
|
||||||
|
width: 54px;
|
||||||
|
height: 54px;
|
||||||
|
margin: 20px;
|
||||||
|
background-color: saddlebrown;
|
||||||
|
}
|
||||||
|
|
||||||
|
.item_info {
|
||||||
|
|
||||||
|
&:nth-child(2),
|
||||||
|
&:nth-child(3) {
|
||||||
|
height: 22px;
|
||||||
|
font-size: 14px;
|
||||||
|
font-weight: 400;
|
||||||
|
color: #333333;
|
||||||
|
line-height: 22px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.item_title {
|
||||||
|
margin-top: 34px;
|
||||||
|
height: 26px;
|
||||||
|
line-height: 26px;
|
||||||
|
font-size: 16px;
|
||||||
|
font-weight: 600;
|
||||||
|
color: #333333;
|
||||||
|
margin-bottom: 10px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -1,10 +1,29 @@
|
|||||||
import styles from './index.less';
|
import ContentWarp from '@/components/ContentWarp';
|
||||||
|
import styles from '../../index.less';
|
||||||
|
import ButtonComp from '@/components/ButtonComp';
|
||||||
|
import { useState } from 'react';
|
||||||
|
|
||||||
// 网络MMJ管理 --> 密钥销毁
|
// 网络MMJ管理 --> 密钥销毁
|
||||||
export default function Page() {
|
export default function Page() {
|
||||||
|
const [htmlText, setHtmlText] = useState('<div>文本内容</div>')
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div>
|
<div className={styles.params_warp}>
|
||||||
{'网络MMJ管理 --> 密钥销毁'}
|
<ContentWarp text={'密码销毁'}>
|
||||||
|
<div className='pd20'>销毁被控端设备的安装密钥和分发密钥</div>
|
||||||
|
<div className='line'></div>
|
||||||
|
<div className='pd20 pb100'>
|
||||||
|
<div className={styles.html_con}>
|
||||||
|
<div style={{ padding: '20px 12px' }} dangerouslySetInnerHTML={{ __html: htmlText }}></div>
|
||||||
|
</div>
|
||||||
|
<div className={styles.btn_warp}>
|
||||||
|
<div className='mr20'>
|
||||||
|
<ButtonComp text={'发送命令'} onClick={() => { }} />
|
||||||
|
</div>
|
||||||
|
<ButtonComp type={'cancel'} text={'清空信息'} onClick={() => setHtmlText('')} />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</ContentWarp>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
@ -1,10 +1,30 @@
|
|||||||
import styles from './index.less';
|
import ContentWarp from '@/components/ContentWarp';
|
||||||
|
import styles from '../../index.less';
|
||||||
|
import ButtonComp from '@/components/ButtonComp';
|
||||||
|
import { useState } from 'react';
|
||||||
|
|
||||||
// 网络MMJ管理 --> MMJ遥毙
|
// 网络MMJ管理 --> 密码遥毙
|
||||||
export default function Page() {
|
export default function Page() {
|
||||||
|
const [htmlText, setHtmlText] = useState('<div>文本内容</div>')
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div>
|
<div className={styles.params_warp}>
|
||||||
{'网络MMJ管理 --> MMJ遥毙'}
|
<ContentWarp text={'密码遥毙'}>
|
||||||
|
<div className='pd20'>销毁被控端设备的初装密钥、安装密钥及分发密钥</div>
|
||||||
|
<div className='line'></div>
|
||||||
|
<div className='pd20 pb100'>
|
||||||
|
<div className={styles.html_con}>
|
||||||
|
<div style={{ padding: '20px 12px' }} dangerouslySetInnerHTML={{ __html: htmlText }}></div>
|
||||||
|
</div>
|
||||||
|
<div className={styles.btn_warp}>
|
||||||
|
<div className='mr20'>
|
||||||
|
<ButtonComp text={'发送命令'} onClick={() => { }} />
|
||||||
|
</div>
|
||||||
|
<ButtonComp type={'cancel'} text={'清空信息'} onClick={() => setHtmlText('')} />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</ContentWarp>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,10 +1,32 @@
|
|||||||
import styles from './index.less';
|
import ContentWarp from '@/components/ContentWarp';
|
||||||
|
import styles from '../../index.less';
|
||||||
|
import ButtonComp from '@/components/ButtonComp';
|
||||||
|
import { useState } from 'react';
|
||||||
|
|
||||||
// 网络MMJ管理 --> 状态查询
|
// 网络MMJ管理 --> 状态查询
|
||||||
export default function Page() {
|
export default function Page() {
|
||||||
|
const [htmlText, setHtmlText] = useState('<div>文本内容</div>')
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div>
|
<div className={styles.params_warp}>
|
||||||
{'网络MMJ管理 --> 状态查询'}
|
<ContentWarp text={'密码机状态'}>
|
||||||
|
<div className='pd20'>隔离器所用密钥数据信息</div>
|
||||||
|
<div className='line'></div>
|
||||||
|
<div className='pd20 pb100'>
|
||||||
|
<div className={styles.html_con}>
|
||||||
|
<div style={{ padding: '20px 12px' }} dangerouslySetInnerHTML={{ __html: htmlText }}></div>
|
||||||
|
</div>
|
||||||
|
<div className={styles.btn_warp}>
|
||||||
|
<div className='mr20'>
|
||||||
|
<ButtonComp text={'状态查询'} onClick={() => { }} />
|
||||||
|
</div>
|
||||||
|
<div className='mr20'>
|
||||||
|
<ButtonComp type={'cancel'} text={'文件另存'} onClick={() => { }} />
|
||||||
|
</div>
|
||||||
|
<ButtonComp type={'cancel'} text={'清空信息'} onClick={() => setHtmlText('')} />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</ContentWarp>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
Loading…
Reference in new issue