From 974041b8609ee4b0185d4ac272337a69e993de4f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=B2=81=E8=AA=89=E7=A8=8B?= <2659568239@qq.com> Date: Wed, 29 Nov 2023 17:07:17 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- config/routes/index.ts | 2 +- src/pages/GLQ/WebGLQ/LogRecordInfo/index.less | 0 src/pages/GLQ/WebGLQ/LogRecordInfo/index.tsx | 31 ++++++++++++++++--- .../GLQ/WebGLQ/ManageConfigInfo/index.less | 0 .../GLQ/WebGLQ/ManageConfigInfo/index.tsx | 29 +++++++++++++++-- .../GLQ/WebGLQ/NetworkConfignInfo/index.less | 0 .../GLQ/WebGLQ/NetworkConfignInfo/index.tsx | 31 ++++++++++++++++--- .../GLQ/WebGLQ/SecurityPolicyInfo/index.less | 0 .../GLQ/WebGLQ/SecurityPolicyInfo/index.tsx | 31 +++++++++++++++++-- .../GLQ/WebGLQ/ServiceListInfo/index.less | 0 .../GLQ/WebGLQ/ServiceListInfo/index.tsx | 30 ++++++++++++++++-- src/pages/GLQ/WebGLQ/VpnPolicyInfo/index.less | 0 src/pages/GLQ/WebGLQ/VpnPolicyInfo/index.tsx | 29 +++++++++++++++-- .../GLQ/WebGLQ/firewallPolicyInfo/index.less | 0 .../GLQ/WebGLQ/firewallPolicyInfo/index.tsx | 31 ++++++++++++++++--- 15 files changed, 189 insertions(+), 25 deletions(-) delete mode 100644 src/pages/GLQ/WebGLQ/LogRecordInfo/index.less delete mode 100644 src/pages/GLQ/WebGLQ/ManageConfigInfo/index.less delete mode 100644 src/pages/GLQ/WebGLQ/NetworkConfignInfo/index.less delete mode 100644 src/pages/GLQ/WebGLQ/SecurityPolicyInfo/index.less delete mode 100644 src/pages/GLQ/WebGLQ/ServiceListInfo/index.less delete mode 100644 src/pages/GLQ/WebGLQ/VpnPolicyInfo/index.less delete mode 100644 src/pages/GLQ/WebGLQ/firewallPolicyInfo/index.less diff --git a/config/routes/index.ts b/config/routes/index.ts index 02787e0..ad0b0e9 100644 --- a/config/routes/index.ts +++ b/config/routes/index.ts @@ -29,7 +29,7 @@ const routes = [ { path: '/webGLQ/securityPolicyInfo', name: '安全策略信息', component: '@/pages/GLQ/WebGLQ/SecurityPolicyInfo' }, { path: '/webGLQ/manageConfigInfo', name: '管理配置信息', component: '@/pages/GLQ/WebGLQ/ManageConfigInfo' }, { path: '/webGLQ/vpnPolicyInfo', name: 'VPN策略信息', component: '@/pages/GLQ/WebGLQ/VpnPolicyInfo' }, - { path: '/webGLQ/firewallPolicyInfo', name: '防火墙策略信息', component: '@/pages/GLQ/WebGLQ/firewallPolicyInfo' }, + { path: '/webGLQ/firewallPolicyInfo', name: '防火墙策略信息', component: '@/pages/GLQ/WebGLQ/FirewallPolicyInfo' }, { path: '/webGLQ/logRecordInfo', name: '日志记录信息', component: '@/pages/GLQ/WebGLQ/LogRecordInfo' }, // 远程文件配置 { path: '/webMMJ/serviceList', name: '服务列表', component: '@/pages/GLQ/WebGLQ/ServiceList' }, diff --git a/src/pages/GLQ/WebGLQ/LogRecordInfo/index.less b/src/pages/GLQ/WebGLQ/LogRecordInfo/index.less deleted file mode 100644 index e69de29..0000000 diff --git a/src/pages/GLQ/WebGLQ/LogRecordInfo/index.tsx b/src/pages/GLQ/WebGLQ/LogRecordInfo/index.tsx index 309ac4c..64a01d8 100644 --- a/src/pages/GLQ/WebGLQ/LogRecordInfo/index.tsx +++ b/src/pages/GLQ/WebGLQ/LogRecordInfo/index.tsx @@ -1,9 +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'; +// 网络GLQ配置 --> 获取配置信息--> 日志记录信息 export default function Page() { + const [htmlText, setHtmlText] = useState('
文本内容
') + return ( -
- {'网络GLQ配置 --> 获取配置信息--> 日志记录信息'} +
+ +
被控端隔离器错误日志信息
+
+
+
+
+
+
+
+ { }} /> +
+
+ { }} /> +
+ setHtmlText('')} /> +
+
+
); -} +} \ No newline at end of file diff --git a/src/pages/GLQ/WebGLQ/ManageConfigInfo/index.less b/src/pages/GLQ/WebGLQ/ManageConfigInfo/index.less deleted file mode 100644 index e69de29..0000000 diff --git a/src/pages/GLQ/WebGLQ/ManageConfigInfo/index.tsx b/src/pages/GLQ/WebGLQ/ManageConfigInfo/index.tsx index d49005b..3580bd8 100644 --- a/src/pages/GLQ/WebGLQ/ManageConfigInfo/index.tsx +++ b/src/pages/GLQ/WebGLQ/ManageConfigInfo/index.tsx @@ -1,9 +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'; +// 网络GLQ配置 --> 获取配置信息--> 管理配置信息 export default function Page() { + const [htmlText, setHtmlText] = useState('
文本内容
') + return ( -
- {'网络GLQ配置 --> 获取配置信息--> 管理配置信息'} +
+ +
被控端服务管理配置情况
+
+
+
+
+
+
+
+ { }} /> +
+
+ { }} /> +
+ setHtmlText('')} /> +
+
+
); } diff --git a/src/pages/GLQ/WebGLQ/NetworkConfignInfo/index.less b/src/pages/GLQ/WebGLQ/NetworkConfignInfo/index.less deleted file mode 100644 index e69de29..0000000 diff --git a/src/pages/GLQ/WebGLQ/NetworkConfignInfo/index.tsx b/src/pages/GLQ/WebGLQ/NetworkConfignInfo/index.tsx index 0a181dd..cc4aa6e 100644 --- a/src/pages/GLQ/WebGLQ/NetworkConfignInfo/index.tsx +++ b/src/pages/GLQ/WebGLQ/NetworkConfignInfo/index.tsx @@ -1,9 +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'; +// 网络GLQ配置 --> 获取配置信息--> 网络配置信息 export default function Page() { + const [htmlText, setHtmlText] = useState('
文本内容
') + return ( -
- {'网络GLQ配置 --> 获取配置信息--> 网络配置信息'} +
+ +
被控端网络状态信息配置情况
+
+
+
+
+
+
+
+ { }} /> +
+
+ { }} /> +
+ setHtmlText('')} /> +
+
+
); -} +} \ No newline at end of file diff --git a/src/pages/GLQ/WebGLQ/SecurityPolicyInfo/index.less b/src/pages/GLQ/WebGLQ/SecurityPolicyInfo/index.less deleted file mode 100644 index e69de29..0000000 diff --git a/src/pages/GLQ/WebGLQ/SecurityPolicyInfo/index.tsx b/src/pages/GLQ/WebGLQ/SecurityPolicyInfo/index.tsx index 6e568aa..70f307e 100644 --- a/src/pages/GLQ/WebGLQ/SecurityPolicyInfo/index.tsx +++ b/src/pages/GLQ/WebGLQ/SecurityPolicyInfo/index.tsx @@ -1,9 +1,34 @@ -import styles from './index.less'; +import ContentWarp from '@/components/ContentWarp'; +import styles from '../../index.less'; +import ButtonComp from '@/components/ButtonComp'; +import { useState } from 'react'; +// 网络GLQ配置 --> 获取配置信息--> 获取安全策略 export default function Page() { + const [htmlText, setHtmlText] = useState('
文本内容
') + return ( -
- {'网络GLQ配置 --> 获取配置信息--> 安全策略信息'} +
+ +
被控端报文过滤策略配置情况
+
+
+
+
+
+
+
+ { }} /> +
+
+ { }} /> +
+ setHtmlText('')} /> +
+
+
); } + + diff --git a/src/pages/GLQ/WebGLQ/ServiceListInfo/index.less b/src/pages/GLQ/WebGLQ/ServiceListInfo/index.less deleted file mode 100644 index e69de29..0000000 diff --git a/src/pages/GLQ/WebGLQ/ServiceListInfo/index.tsx b/src/pages/GLQ/WebGLQ/ServiceListInfo/index.tsx index 1991d3d..4afce9d 100644 --- a/src/pages/GLQ/WebGLQ/ServiceListInfo/index.tsx +++ b/src/pages/GLQ/WebGLQ/ServiceListInfo/index.tsx @@ -1,9 +1,33 @@ -import styles from './index.less'; +import ContentWarp from '@/components/ContentWarp'; +import styles from '../../index.less'; +import ButtonComp from '@/components/ButtonComp'; +import { useState } from 'react'; +// 网络GLQ配置 --> 获取配置信息--> 服务列表信息 export default function Page() { + const [htmlText, setHtmlText] = useState('
文本内容
') + return ( -
- {'网络GLQ配置 --> 获取配置信息--> 服务列表信息'} +
+ +
获取被控端服务列表情况
+
+
+
+
+
+
+
+ { }} /> +
+
+ { }} /> +
+ setHtmlText('')} /> +
+
+
); } + diff --git a/src/pages/GLQ/WebGLQ/VpnPolicyInfo/index.less b/src/pages/GLQ/WebGLQ/VpnPolicyInfo/index.less deleted file mode 100644 index e69de29..0000000 diff --git a/src/pages/GLQ/WebGLQ/VpnPolicyInfo/index.tsx b/src/pages/GLQ/WebGLQ/VpnPolicyInfo/index.tsx index 10aaefb..5902f68 100644 --- a/src/pages/GLQ/WebGLQ/VpnPolicyInfo/index.tsx +++ b/src/pages/GLQ/WebGLQ/VpnPolicyInfo/index.tsx @@ -1,9 +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'; +// 网络GLQ配置 --> 获取配置信息--> VPN策略信息 export default function Page() { + const [htmlText, setHtmlText] = useState('
文本内容
') + return ( -
- {'网络GLQ配置 --> 获取配置信息--> VPN策略信息'} +
+ +
被控端VPN过滤策略配置情况
+
+
+
+
+
+
+
+ { }} /> +
+
+ { }} /> +
+ setHtmlText('')} /> +
+
+
); } diff --git a/src/pages/GLQ/WebGLQ/firewallPolicyInfo/index.less b/src/pages/GLQ/WebGLQ/firewallPolicyInfo/index.less deleted file mode 100644 index e69de29..0000000 diff --git a/src/pages/GLQ/WebGLQ/firewallPolicyInfo/index.tsx b/src/pages/GLQ/WebGLQ/firewallPolicyInfo/index.tsx index 8b6d51a..974f1b4 100644 --- a/src/pages/GLQ/WebGLQ/firewallPolicyInfo/index.tsx +++ b/src/pages/GLQ/WebGLQ/firewallPolicyInfo/index.tsx @@ -1,9 +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'; +// 网络GLQ配置 --> 获取配置信息--> 防火墙策略信息 export default function Page() { + const [htmlText, setHtmlText] = useState('
文本内容
') + return ( -
- {'网络GLQ配置 --> 获取配置信息--> 防火墙策略信息'} +
+ +
被控端防火墙策略配置情况
+
+
+
+
+
+
+
+ { }} /> +
+
+ { }} /> +
+ setHtmlText('')} /> +
+
+
); -} +} \ No newline at end of file