From f5c122bf2739ac6a5156c3f9ab686c8be533c61b Mon Sep 17 00:00:00 2001 From: dsh <15569653818@163.com> Date: Wed, 17 Apr 2024 15:13:17 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B6=89=E5=AF=86=E4=BA=BA=E5=91=98=E7=A6=BB?= =?UTF-8?q?=E8=81=8C,=E5=AE=A1=E6=A0=B8=E3=80=82=E6=89=93=E5=8D=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../controller/system/TdLeaveController.java | 2 +- .../resources/templates/system/leave/leave.html | 10 +++++----- .../templates/system/leave/leaveexamine.html | 17 ++++++++++++----- .../templates/system/leave/leaveprint.html | 11 +++++------ 4 files changed, 23 insertions(+), 17 deletions(-) diff --git a/ruoyi-admin/src/main/java/com/ruoyi/web/controller/system/TdLeaveController.java b/ruoyi-admin/src/main/java/com/ruoyi/web/controller/system/TdLeaveController.java index e090b5d..a70cebf 100644 --- a/ruoyi-admin/src/main/java/com/ruoyi/web/controller/system/TdLeaveController.java +++ b/ruoyi-admin/src/main/java/com/ruoyi/web/controller/system/TdLeaveController.java @@ -157,7 +157,7 @@ public class TdLeaveController extends BaseController public String examine(@PathVariable("id") Long id,ModelMap mmap){ TdLeave leaveuser = tdLeaveService.selectTdLeaveById(id); mmap.put("leaveuser", leaveuser); - mmap.put("sysuser",getSysUser().getLoginName()); + mmap.put("sysuser",getSysUser()); return prefix + "/leaveexamine"; } diff --git a/ruoyi-admin/src/main/resources/templates/system/leave/leave.html b/ruoyi-admin/src/main/resources/templates/system/leave/leave.html index 93e17c8..8c96c33 100644 --- a/ruoyi-admin/src/main/resources/templates/system/leave/leave.html +++ b/ruoyi-admin/src/main/resources/templates/system/leave/leave.html @@ -67,7 +67,7 @@ var downloadFlag = [[${@permission.hasPermi('system:leave:examine')}]]; var examinestateDatas = [[${@dict.getType('sys_examine_state')}]]; var leavestateData = [[${@dict.getType('sys_user_leave')}]]; - var workstateData = [[${@dict.getType('sys_examine_state')}]]; + var workstateData = [[${@dict.getType('sys_user_work')}]]; var prefix = ctx + "system/leave"; $(function() { @@ -92,7 +92,7 @@ visible: false }, { - field: 'usernName', + field: 'userName', title: '提交人' }, { @@ -146,8 +146,8 @@ formatter: function(value, row, index) { var actions = []; actions.push('编辑 '); - actions.push('审核 '); - actions.push('打印 '); + actions.push('审核 '); + actions.push('打印 '); actions.push('删除'); return actions.join(''); } @@ -159,7 +159,7 @@ var url ='/system/leave/examine/' + id; $.modal.open("涉密人员离职审核", url); } - function auditingPrint(id){ + function auditingPrint(id,userId){ var url ='/system/leave/print/' + id; $.modal.openTab("打印", url); } diff --git a/ruoyi-admin/src/main/resources/templates/system/leave/leaveexamine.html b/ruoyi-admin/src/main/resources/templates/system/leave/leaveexamine.html index c7eaf3b..a52cd11 100644 --- a/ruoyi-admin/src/main/resources/templates/system/leave/leaveexamine.html +++ b/ruoyi-admin/src/main/resources/templates/system/leave/leaveexamine.html @@ -7,14 +7,16 @@