From acc11b6af5799015b11528bc335188518bfe83c3 Mon Sep 17 00:00:00 2001
From: 20918 <2091823062@qq.com>
Date: Tue, 14 May 2024 09:25:19 +0800
Subject: [PATCH] =?UTF-8?q?=E6=B6=89=E5=AF=86=E7=BD=91=E7=BB=9C=E8=AE=BE?=
=?UTF-8?q?=E5=A4=87?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../system/TdPropertyNetinfoController.java | 10 +++
.../system/network/netinfo/detail.html | 10 +++
.../system/network/netinfo/netinfo.html | 75 ++++---------------
3 files changed, 35 insertions(+), 60 deletions(-)
create mode 100644 ruoyi-admin/src/main/resources/templates/system/network/netinfo/detail.html
diff --git a/ruoyi-admin/src/main/java/com/ruoyi/web/controller/system/TdPropertyNetinfoController.java b/ruoyi-admin/src/main/java/com/ruoyi/web/controller/system/TdPropertyNetinfoController.java
index 686c5c3..739be5c 100644
--- a/ruoyi-admin/src/main/java/com/ruoyi/web/controller/system/TdPropertyNetinfoController.java
+++ b/ruoyi-admin/src/main/java/com/ruoyi/web/controller/system/TdPropertyNetinfoController.java
@@ -125,4 +125,14 @@ public class TdPropertyNetinfoController extends BaseController
return toAjax(tdPropertyNetinfoService.deleteTdPropertyNetinfoByIds(ids));
}
+ /**
+ * 涉密网络登记详情
+ */
+ @RequiresPermissions("system:network:detail")
+ @GetMapping("/detail/{id}")
+ public String detail(@PathVariable("id") String id, ModelMap mmap)
+ {
+ mmap.put("tdPropertyNetinfo", tdPropertyNetinfoService.selectTdPropertyNetinfoById(id));
+ return prefix + "/detail";
+ }
}
diff --git a/ruoyi-admin/src/main/resources/templates/system/network/netinfo/detail.html b/ruoyi-admin/src/main/resources/templates/system/network/netinfo/detail.html
new file mode 100644
index 0000000..566549b
--- /dev/null
+++ b/ruoyi-admin/src/main/resources/templates/system/network/netinfo/detail.html
@@ -0,0 +1,10 @@
+
+
+
+
+ Title
+
+
+
+
+
\ No newline at end of file
diff --git a/ruoyi-admin/src/main/resources/templates/system/network/netinfo/netinfo.html b/ruoyi-admin/src/main/resources/templates/system/network/netinfo/netinfo.html
index 0ad8b94..f0a483e 100644
--- a/ruoyi-admin/src/main/resources/templates/system/network/netinfo/netinfo.html
+++ b/ruoyi-admin/src/main/resources/templates/system/network/netinfo/netinfo.html
@@ -11,17 +11,13 @@
- 网络编号:
-
+ 设备编号:
+
网络设备品牌:
-
- IP地址:
-
-
设备型号:
@@ -33,40 +29,6 @@
-
- 序列号:
-
-
-
- 登记人员:
-
-
-
- 责任人:
-
-
-
- 密级:
-
- 所有
-
-
-
-
- 涉密网络名称:
-
-
-
- 是否属于要害部门部位:
-
- 所有
-
-
-
-
- 单位名称:
-
-
搜索
重置
@@ -106,18 +68,19 @@
var netMijiDatas = [[${@dict.getType('sys_file_miji')}]];
var isCurcialDatas = [[${@dict.getType('sys_yes_no')}]];
var prefix = ctx + "system/network/netinfo";
- var obj = {id:''};
- obj.id = [[${id}]] + ''
+ var obj = {netId:''};
+ obj.netId = [[${netId}]] + ''
// 添加信息
function hanldAdd() {
table.set();
- $.modal.open("添加" + table.options.modalName, $.operate.addUrl(obj.id));
+ $.modal.open("添加" + table.options.modalName, $.operate.addUrl(obj.netId));
};
$(function() {
var options = {
url: prefix + "/list",
- createUrl: prefix + "/add/{id}",
+ queryParams:obj,
+ createUrl: prefix + "/add/{netId}",
updateUrl: prefix + "/edit/{id}",
removeUrl: prefix + "/remove",
exportUrl: prefix + "/export",
@@ -152,24 +115,13 @@
field: 'netSn',
title: '序列号'
},
- {
- field: 'remark',
- title: '备注'
- },
- {
- field: 'netname',
- title: '登记人员'
- },
{
field: 'netManager',
title: '责任人'
},
{
- field: 'netMiji',
- title: '密级',
- formatter: function(value, row, index) {
- return $.table.selectDictLabel(netMijiDatas, value);
- }
+ field: 'depart',
+ title: '单位名称'
},
{
field: 'netsmname',
@@ -179,12 +131,15 @@
field: 'isCurcial',
title: '是否属于要害部门部位',
formatter: function(value, row, index) {
- return $.table.selectDictLabel(isCurcialDatas, value);
+ return $.table.selectDictLabel(isCurcialDatas, value);
}
},
{
- field: 'depart',
- title: '单位名称'
+ field: 'netMiji',
+ title: '密级',
+ formatter: function(value, row, index) {
+ return $.table.selectDictLabel(netMijiDatas, value);
+ }
},
{
title: '操作',