+
@@ -49,79 +54,6 @@
var userPolitics = [[${@dict.getType('sys_user_politics')}]];
var examineState = [[${@dict.getType('sys_user_examine')}]];
var prefix = ctx + "system/userexamine";
-
- $(function() {
- var options = {
- url: prefix + "/list",
- modalName: "涉密人员审核",
- columns: [
- {
- field: 'userId',
- title: '人员ID',
- },
- {
- field: 'loginName',
- title: '人员编号',
- },
- {
- field: 'examine',
- title: '审核状态',
- formatter: function(value, row, index) {
- return $.table.selectDictLabel(examineState, value);
- }
- },
- {
- field: 'examineuser',
- title: '审核人',
- },
- {
- field: 'examinedate',
- title: '审核时间',
- },
- {
- field: 'userName',
- title: '人员姓名',
- },
- {
- field: 'status',
- title: '用户状态',
- formatter: function(value, row, index) {
- return $.table.selectDictLabel(userStatus, value);
- }
- },
- {
- field: 'phonenumber',
- title: '联系电话'
- },
- {
- field: 'politics',
- title: '政治面貌',
- formatter: function(value, row, index) {
- return $.table.selectDictLabel(userPolitics, value);
- }
- },
- {
- field: 'userarea',
- title: '户籍地址',
- },
- {
- title: '操作',
- align: 'center',
- formatter: function(value, row, index) {
- var actions = [];
- if(row.examine !== '2'){
- actions.push('
审核 ');
- actions.push('
打印 ');
- }else{
- actions.push('
审核 ');
- actions.push('
打印 ');
- }
- return actions.join('');
- }
- }]
- };
- $.table.init(options);
- });
function examinedetail(id) {
var url ='/system/userexamine/examine/' + id;
$.modal.openTab("涉密人员审核", url);
@@ -130,6 +62,157 @@
var url ='system/userexamine/examineprint/' + id;
$.modal.openTab("打印", url);
}
+ var app = new Vue({
+ el: '#app',
+ data: {
+ optionsA:{
+ url: prefix + "/list",
+ modalName: "涉密人员审核",
+ columns: [
+ {
+ field: 'userId',
+ title: '人员ID',
+ },
+ {
+ field: 'loginName',
+ title: '人员编号',
+ },
+ {
+ field: 'examine',
+ title: '审核状态',
+ formatter: function(value, row, index) {
+ return $.table.selectDictLabel(examineState, value);
+ }
+ },
+ {
+ field: 'examineuser',
+ title: '审核人',
+ },
+ {
+ field: 'examinedate',
+ title: '审核时间',
+ },
+ {
+ field: 'userName',
+ title: '人员姓名',
+ },
+ {
+ field: 'status',
+ title: '用户状态',
+ formatter: function(value, row, index) {
+ return $.table.selectDictLabel(userStatus, value);
+ }
+ },
+ {
+ field: 'phonenumber',
+ title: '联系电话'
+ },
+ {
+ field: 'politics',
+ title: '政治面貌',
+ formatter: function(value, row, index) {
+ return $.table.selectDictLabel(userPolitics, value);
+ }
+ },
+ {
+ field: 'userarea',
+ title: '户籍地址',
+ },
+ {
+ title: '操作',
+ align: 'center',
+ formatter: function(value, row, index) {
+ var actions = [];
+ actions.push('
审核 ');
+ actions.push('
打印 ');
+ return actions.join('');
+ }
+ }]
+ },
+ optionsB:{
+ url: prefix + "/reviewList",
+ modalName: "涉密人员审核",
+ columns: [
+ {
+ field: 'userId',
+ title: '人员ID',
+ },
+ {
+ field: 'loginName',
+ title: '人员编号',
+ },
+ {
+ field: 'examine',
+ title: '审核状态',
+ formatter: function(value, row, index) {
+ return $.table.selectDictLabel(examineState, value);
+ }
+ },
+ {
+ field: 'examineuser',
+ title: '审核人',
+ },
+ {
+ field: 'examinedate',
+ title: '审核时间',
+ },
+ {
+ field: 'userName',
+ title: '人员姓名',
+ },
+ {
+ field: 'status',
+ title: '用户状态',
+ formatter: function(value, row, index) {
+ return $.table.selectDictLabel(userStatus, value);
+ }
+ },
+ {
+ field: 'phonenumber',
+ title: '联系电话'
+ },
+ {
+ field: 'politics',
+ title: '政治面貌',
+ formatter: function(value, row, index) {
+ return $.table.selectDictLabel(userPolitics, value);
+ }
+ },
+ {
+ field: 'userarea',
+ title: '户籍地址',
+ },
+ {
+ title: '操作',
+ align: 'center',
+ formatter: function(value, row, index) {
+ var actions = [];
+ actions.push('
审核 ');
+ actions.push('
打印 ');
+ return actions.join('');
+ }
+ }]
+ },
+ isStateA:'0',
+ },
+ mounted(){
+ $.table.init(this.optionsA)
+ this.isStateA = '3'
+ },
+ methods:{
+ changeExamine(){
+ if (this.isStateA === '3'){
+ $.table.destroy()
+ $.table.init(this.optionsB)
+ this.isStateA = '0'
+ }else if(this.isStateA === '0'){
+ $.table.destroy()
+ $.table.init(this.optionsA)
+ this.isStateA = '3'
+ }
+ }
+ }
+ })