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); + }