From ad8d5ae2937a19f5753b8fb1ff9f938bcbd6d895 Mon Sep 17 00:00:00 2001 From: RuoYi Date: Sat, 21 Mar 2026 14:36:12 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BC=98=E5=8C=96=E7=82=B9=E5=87=BB=E4=BB=BB?= =?UTF-8?q?=E5=8A=A1=E5=90=8D=E7=A7=B0=E6=9F=A5=E7=9C=8B=E8=AF=A6=E7=BB=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../templates/monitor/operlog/detail.html | 22 +++++++++++-------- .../resources/templates/system/dept/dept.html | 4 ++-- .../resources/templates/monitor/job/job.html | 5 ++++- .../ruoyi/system/mapper/SysMenuMapper.java | 3 +-- .../service/impl/SysMenuServiceImpl.java | 1 + 5 files changed, 21 insertions(+), 14 deletions(-) diff --git a/ruoyi-admin/src/main/resources/templates/monitor/operlog/detail.html b/ruoyi-admin/src/main/resources/templates/monitor/operlog/detail.html index 9fb48f63..07b3c592 100644 --- a/ruoyi-admin/src/main/resources/templates/monitor/operlog/detail.html +++ b/ruoyi-admin/src/main/resources/templates/monitor/operlog/detail.html @@ -3,7 +3,7 @@ - +
@@ -75,22 +75,26 @@
请求参数
-
- -
-
+
+
+ +
+

+            
返回参数
-
- -
-
+
+
+ +
+

+            
diff --git a/ruoyi-admin/src/main/resources/templates/system/dept/dept.html b/ruoyi-admin/src/main/resources/templates/system/dept/dept.html index 6445af60..01f97f25 100644 --- a/ruoyi-admin/src/main/resources/templates/system/dept/dept.html +++ b/ruoyi-admin/src/main/resources/templates/system/dept/dept.html @@ -35,10 +35,10 @@ 修改 - + 保存排序 - + 展开/折叠
diff --git a/ruoyi-quartz/src/main/resources/templates/monitor/job/job.html b/ruoyi-quartz/src/main/resources/templates/monitor/job/job.html index ca619254..f970ee5b 100644 --- a/ruoyi-quartz/src/main/resources/templates/monitor/job/job.html +++ b/ruoyi-quartz/src/main/resources/templates/monitor/job/job.html @@ -90,6 +90,10 @@ { field: 'jobName', title: '任务名称', + sortable: true, + formatter: function(value, row, index) { + return '' + value + ''; + } }, { field: 'jobGroup', @@ -131,7 +135,6 @@ actions.push('删除 '); var more = []; more.push(" 执行一次 "); - more.push("任务详细 "); more.push("调度日志"); actions.push('更多操作'); return actions.join(''); diff --git a/ruoyi-system/src/main/java/com/ruoyi/system/mapper/SysMenuMapper.java b/ruoyi-system/src/main/java/com/ruoyi/system/mapper/SysMenuMapper.java index dd7f19e7..b8dfab1f 100644 --- a/ruoyi-system/src/main/java/com/ruoyi/system/mapper/SysMenuMapper.java +++ b/ruoyi-system/src/main/java/com/ruoyi/system/mapper/SysMenuMapper.java @@ -124,8 +124,7 @@ public interface SysMenuMapper /** * 保存菜单排序 * - * @param menuIds 菜单ID - * @param orderNums 排序ID + * @param menu 菜单信息 */ public void updateMenuSort(SysMenu menu); diff --git a/ruoyi-system/src/main/java/com/ruoyi/system/service/impl/SysMenuServiceImpl.java b/ruoyi-system/src/main/java/com/ruoyi/system/service/impl/SysMenuServiceImpl.java index 3a51d16b..e5febd4f 100644 --- a/ruoyi-system/src/main/java/com/ruoyi/system/service/impl/SysMenuServiceImpl.java +++ b/ruoyi-system/src/main/java/com/ruoyi/system/service/impl/SysMenuServiceImpl.java @@ -331,6 +331,7 @@ public class SysMenuServiceImpl implements ISysMenuService * @param menuIds 菜单ID * @param orderNums 排序ID */ + @Override @Transactional public void updateMenuSort(String[] menuIds, String[] orderNums) {