diff --git a/src/main/resources/static/route/activiti/list.html b/src/main/resources/static/route/activiti/list.html index 352aead..bcb2d37 100644 --- a/src/main/resources/static/route/activiti/list.html +++ b/src/main/resources/static/route/activiti/list.html @@ -98,7 +98,16 @@ return rowData; } }, - {field:'deploymentStatus', width:80, title: '状态', align:'center', + {field:'deploymentId', width:300, title: '部署ID', align:'center', + templet: function(row) { + var rowData = row[this.field]; + if(typeof(rowData) === 'undefined' || rowData == null || rowData == '') { + return '-'; + } + return rowData; + } + }, + {field:'deploymentStatus', width:80, title: '状态', fixed:'right', align:'center', templet: function(row) { if(!row.deploymentId) { return '未部署'; @@ -107,7 +116,7 @@ } } }, - {field: 'option', width: 80, title: '操作', align:'center', + {field: 'option', width: 80, title: '操作', align:'center', fixed: 'right', templet: function(row) { if(!row.deploymentId) { return '';