diff --git a/activiti/src/main/resources/template/js/allactiviti/allcomplatepossess.js b/activiti/src/main/resources/template/js/allactiviti/allcomplatepossess.js index 2ba08112f5e1bfcc987dd992d4562cdba896cb71..55710b6d520439a41ccf477f9f6860dc175a3a13 100644 --- a/activiti/src/main/resources/template/js/allactiviti/allcomplatepossess.js +++ b/activiti/src/main/resources/template/js/allactiviti/allcomplatepossess.js @@ -25,12 +25,8 @@ layui.config({ { title: systemLanguage["com.skyeye.serialNumber"][languageType], type: 'numbers'}, { field: 'processInstanceId', title: '流程ID', width: 100 }, { field: 'taskType', title: '类型', width: 100 }, - { field: 'createName', title: '申请人', width: 100}, - { field: 'createTime', title: '申请时间', align: 'center', width: 180, templet: function(d){ - var str = d.createTime.toString(); - str = str.substring(0, str.length - 3); - return date('Y-m-d H:i:s', str); - }}, + { field: 'createName', title: '申请人', width: 120}, + { field: 'createTime', title: '申请时间', align: 'center', width: 150 }, { field: 'name', title: '当前节点', width: 130, templet: function(d){ return '[' + d.name + ']'; }}, diff --git a/activiti/src/main/resources/template/js/allactiviti/alltodopossess.js b/activiti/src/main/resources/template/js/allactiviti/alltodopossess.js index af6cd8655519340bd7cf56847c0395fd2f90749e..0bb86ef373c48594f860208ae424df013fa7f24f 100644 --- a/activiti/src/main/resources/template/js/allactiviti/alltodopossess.js +++ b/activiti/src/main/resources/template/js/allactiviti/alltodopossess.js @@ -25,15 +25,8 @@ layui.config({ { title: systemLanguage["com.skyeye.serialNumber"][languageType], type: 'numbers'}, { field: 'processInstanceId', title: '流程ID', width: 100 }, { field: 'taskType', title: '类型', width: 100 }, - { field: 'createName', title: '申请人', width: 100}, - { field: 'createTime', title: '申请时间', align: 'center', width: 180, templet: function(d){ - if(!isNull(d.createTime)){ - var str = d.createTime.toString(); - str = str.substring(0, str.length - 3); - return date('Y-m-d H:i:s', str); - } - return "-"; - }}, + { field: 'createName', title: '申请人', width: 120}, + { field: 'createTime', title: '申请时间', align: 'center', width: 150 }, { field: 'name', title: '当前节点', width: 130, templet: function(d){ return '[' + d.name + ']'; }}, diff --git a/activiti/src/main/resources/template/js/myActiviti/pendingProcess.js b/activiti/src/main/resources/template/js/myActiviti/pendingProcess.js index eddae7bd9ce6aaac37b64bc60107f47e5f3a9f1e..782a5f9fbb14b9e0192f8258ee39e1eef7a423dc 100644 --- a/activiti/src/main/resources/template/js/myActiviti/pendingProcess.js +++ b/activiti/src/main/resources/template/js/myActiviti/pendingProcess.js @@ -36,16 +36,8 @@ layui.config({ return '' + d.processInstanceId + ''; }}, { field: 'taskType', title: '类型', width: 150 }, - { field: 'createName', title: '申请人', width: 140}, - { field: 'createTime', title: '申请时间', align: 'center', width: 140, templet: function(d){ - if(!isNull(d.createTime)){ - var str = d.createTime.toString(); - str = str.substring(0, str.length - 3); - return date('Y-m-d H:i', str); - }else{ - return ""; - } - }}, + { field: 'createName', title: '申请人', width: 120}, + { field: 'createTime', title: '申请时间', align: 'center', width: 150 }, { field: 'name', title: '当前节点', width: 130, templet: function(d){ return '[' + d.name + ']'; }}, diff --git a/activiti/src/main/resources/template/js/myActiviti/processedProcess.js b/activiti/src/main/resources/template/js/myActiviti/processedProcess.js index 61b02d3ff069a92bea27af04c68afdd7085f41c9..afe894001035715ee31c17ac4451aa10de60b21b 100644 --- a/activiti/src/main/resources/template/js/myActiviti/processedProcess.js +++ b/activiti/src/main/resources/template/js/myActiviti/processedProcess.js @@ -29,16 +29,8 @@ layui.config({ { title: systemLanguage["com.skyeye.serialNumber"][languageType], type: 'numbers'}, { field: 'processInstanceId', title: '流程ID', width: 100 }, { field: 'taskType', title: '类型', width: 100 }, - { field: 'createName', title: '申请人', width: 100}, - { field: 'startTime', title: '申请时间', align: 'center', width: 140, templet: function(d){ - if(!isNull(d.createTime)){ - var str = d.createTime.toString(); - str = str.substring(0, str.length - 3); - return date('Y-m-d H:i', str); - }else{ - return ""; - } - }}, + { field: 'createName', title: '申请人', width: 120}, + { field: 'createTime', title: '申请时间', align: 'center', width: 150 }, { field: 'name', title: '我处理的节点', width: 130, templet: function(d){ return '[' + d.name + ']'; }},