From 2dcc2e2eeb3e6aebfc7e055d0a83ba4e293075a4 Mon Sep 17 00:00:00 2001 From: dshclm <3321914460@qq.com> Date: Tue, 3 Jun 2025 17:24:11 +0800 Subject: [PATCH] =?UTF-8?q?=E6=8F=90=E4=BA=A4=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../system/newdev/person/applyRecord.html | 171 ++++++++++++++++++ .../system/newdev/person/personList.html | 24 ++- 2 files changed, 193 insertions(+), 2 deletions(-) create mode 100644 ruoyi-admin/src/main/resources/templates/system/newdev/person/applyRecord.html diff --git a/ruoyi-admin/src/main/resources/templates/system/newdev/person/applyRecord.html b/ruoyi-admin/src/main/resources/templates/system/newdev/person/applyRecord.html new file mode 100644 index 00000000..39535501 --- /dev/null +++ b/ruoyi-admin/src/main/resources/templates/system/newdev/person/applyRecord.html @@ -0,0 +1,171 @@ + + + + + + + + +
+
+
+ +
+ 修改前 +
+
+
+

+ 姓名: + {{ item.name }} +

+

+ 身份证号: + {{ item.cerno }} +

+

+ 联系方式: + {{ item.phone }} +

+

+ 已(拟)任涉密岗位: + {{ item.smPost }} +

+

+ 涉密等级: + {{ item.smGrade }} +

+
+
+
+ +
+ + +
+ 修改后 +
+
+
+

+ 姓名: + {{ item.name }} +

+

+ 身份证号: + {{ item.cerno }} +

+

+ 联系方式: + {{ item.phone }} +

+

+ 已(拟)任涉密岗位: + {{ item.smPost }} +

+

+ 涉密等级: + {{ item.smGrade }} +

+
+
+
+ +
+
+
+
+ + + + + diff --git a/ruoyi-admin/src/main/resources/templates/system/newdev/person/personList.html b/ruoyi-admin/src/main/resources/templates/system/newdev/person/personList.html index 73e106b9..fa9e6245 100644 --- a/ruoyi-admin/src/main/resources/templates/system/newdev/person/personList.html +++ b/ruoyi-admin/src/main/resources/templates/system/newdev/person/personList.html @@ -112,14 +112,34 @@ align: 'center', formatter: function(value, row, index) { var actions = []; - actions.push('查看 '); + if(row.remark == '1') { + actions.push('调岗记录 '); + actions.push('查看 '); + }else{ + actions.push('查看 '); + } return actions.join(''); } }] }; $.table.init(options); }); - + function handleDetail(applyId){ + table.set(); + var _url = prefix + '/getApplyRecord/' + applyId; + var options = { + title:'调岗记录', + width: '900', + height: '900', + url: _url, + skin: 'layui-layer-gray', + btn: ['关闭'], + yes: function (index, layero) { + $.modal.close(index); + } + }; + $.modal.openOptions(options); + }