You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
xgd_system/src/pages/GLQ/WebGLQ/SecurityPolicy/index.tsx

100 lines
2.9 KiB

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

import ContentWarp from '@/components/ContentWarp';
import styles from '../../index.less';
import { ConfigProvider, Form, Input, Table } from 'antd';
import ButtonComp from '@/components/ButtonComp';
import { useState } from 'react';
import { tableTheme } from '@/utils/theme';
// 网络GLQ配置 --> 远程文件配置--> 安全策略
export default function Page() {
const [form] = Form.useForm();
const [tableData, setTableData] = useState([]);
const [total, setTotal] = useState(0);
const onFinish = (values: any) => {
console.log('表单提交:', values);
};
const columns: any = [
{
title: '序号',
key: 'index',
align: 'center',
width: 100,
render: (text: any, record: any, index: any) => {
return <span>{index + 1}</span>;
},
}, {
title: '单位名称',
dataIndex: 'name',
key: 'name',
align: 'center',
}, {
title: '设备名称',
dataIndex: 'age',
key: 'age',
align: 'center',
}, {
title: '设备IP',
dataIndex: 'age',
key: 'age',
align: 'center',
}, {
title: '电话号码',
dataIndex: 'name',
key: 'name',
align: 'center',
}, {
title: '设备属性',
dataIndex: 'age',
key: 'age',
align: 'center',
}, {
title: '设备型号',
dataIndex: 'age',
key: 'age',
align: 'center',
},
]
const rowClassName = (record:any, index: any) => {
return index % 2 === 0 ? 'even-row' : 'odd-row';
};
return (
<div className={styles.params_warp}>
<ContentWarp text={'安全策略配置'}>
<div className='pd20'></div>
<div className='line'></div>
<div className='pd20 pb100'>
<ConfigProvider theme={tableTheme}>
<Table
scroll={{y: 451}}
pagination={false}
bordered
columns={columns}
dataSource={[{},{},{},{},{}]}
rowKey={(record: any) => record?.id}
rowClassName={rowClassName}
/>
</ConfigProvider>
<Form form={form} layout={'inline'} onFinish={onFinish} className='mt20'>
<Form.Item name="aaa" label="普密对外服务器IP仅Ⅱ型隔离器时需配置此项" rules={[{ required: true, message: '请输入普密对外服务器IP' }]} >
<Input style={{ width: '280px' }} />
</Form.Item>
<div style={{ display: 'flex', marginLeft: 20 }}>
<ButtonComp text={'获取普密信息'} onClick={() => form.submit()} />
</div>
</Form>
<div className='mt20'></div>
<div className={styles.btn_warp}>
<ButtonComp text={'发送数据'} onClick={() => { }} />
</div>
</div>
</ContentWarp>
</div>
);
}