diff --git a/src/main/resources/static/route/mail/mail-del-list.html b/src/main/resources/static/route/mail/mail-del-list.html index f970a45..9456767 100644 --- a/src/main/resources/static/route/mail/mail-del-list.html +++ b/src/main/resources/static/route/mail/mail-del-list.html @@ -86,9 +86,9 @@ }, cols: [ [ - {type:'checkbox', width: 80, fixed: 'left'}, - {field:'rowNum', width:80, title: '序号', fixed: 'left', align:'center', templet: '{{d.LAY_INDEX}}'}, - {field: 'recipientNames', width: 260, title: '收件人', align:'center', + {type:'checkbox', width: 30, fixed: 'left'}, + {field:'rowNum', width:60, title: '序号', fixed: 'left', align:'center', templet: '{{d.LAY_INDEX}}'}, + {field: 'recipientNames', width: 330, title: '收件人', align:'center', templet: function(row) { var rowData = row[this.field]; if(typeof(rowData) === 'undefined' || rowData == null || rowData == '') { @@ -103,7 +103,7 @@ if(typeof(rowData) === 'undefined' || rowData == null || rowData == '') { return '-'; } - return '' + rowData + ''; + return rowData; } }, {field: 'delTime', title: '删除时间', width: 170, align:'center', diff --git a/src/main/resources/static/route/mail/mail-draft-list.html b/src/main/resources/static/route/mail/mail-draft-list.html index 654a2cf..2689baa 100644 --- a/src/main/resources/static/route/mail/mail-draft-list.html +++ b/src/main/resources/static/route/mail/mail-draft-list.html @@ -83,9 +83,9 @@ }, cols: [ [ - {type:'checkbox', width: 80}, - {field:'rowNum', width:80, title: '序号', align:'center', templet: '{{d.LAY_INDEX}}'}, - {field: 'recipientNames', width: 260, title: '收件人', align:'center', + {type:'checkbox', width: 30, fixed: 'left'}, + {field:'rowNum', width:60, title: '序号', align:'center', templet: '{{d.LAY_INDEX}}'}, + {field: 'recipientNames', width: 330, title: '收件人', align:'center', templet: function(row) { var rowData = row[this.field]; if(typeof(rowData) === 'undefined' || rowData == null || rowData == '') { @@ -100,7 +100,7 @@ if(typeof(rowData) === 'undefined' || rowData == null || rowData == '') { return '-'; } - return '' + rowData + ''; + return rowData; } }, {field: 'gmtCreate', title: '时间', width: 180, align:'center', diff --git a/src/main/resources/static/route/mail/mail-inbox-list.html b/src/main/resources/static/route/mail/mail-inbox-list.html index 9a187e3..3984138 100644 --- a/src/main/resources/static/route/mail/mail-inbox-list.html +++ b/src/main/resources/static/route/mail/mail-inbox-list.html @@ -83,9 +83,9 @@ }, cols: [ [ - {type:'checkbox', width: '80'}, - {field:'rowNum', width: '80', title: '序号', align:'center', templet: '{{d.LAY_INDEX}}'}, - {field: 'recipientNames', width: '260', title: '收件人', align:'center', + {type:'checkbox', width: 30, fixed: 'left'}, + {field:'rowNum', width: '60', fixed: 'left', title: '序号', align:'center', templet: '{{d.LAY_INDEX}}'}, + {field: 'recipientNames', width: '330', title: '收件人', align:'center', templet: function(row) { var rowData = row[this.field]; if(typeof(rowData) === 'undefined' || rowData == null || rowData === '') { @@ -100,7 +100,7 @@ if(typeof(rowData) === 'undefined' || rowData == null || rowData == '') { return '-'; } - return '' + rowData + ''; + return rowData; } }, {field: 'gmtCreate', title: '时间', width: 180, align:'center', diff --git a/src/main/resources/static/route/mail/mail-send-list.html b/src/main/resources/static/route/mail/mail-send-list.html index 488cae5..4a2d467 100644 --- a/src/main/resources/static/route/mail/mail-send-list.html +++ b/src/main/resources/static/route/mail/mail-send-list.html @@ -83,9 +83,9 @@ }, cols: [ [ - {type:'checkbox', width: '80'}, - {field:'rowNum', width: '80', title: '序号', align:'center', templet: '{{d.LAY_INDEX}}'}, - {field: 'recipientNames', width: '260', title: '收件人', align:'center', + {type:'checkbox', width: '30', fixed: 'left'}, + {field:'rowNum', width: '60', fixed: 'left', title: '序号', align:'center', templet: '{{d.LAY_INDEX}}'}, + {field: 'recipientNames', width: '330', title: '收件人', align:'center', templet: function(row) { var rowData = row[this.field]; if(typeof(rowData) === 'undefined' || rowData == null || rowData == '') { @@ -100,7 +100,7 @@ if(typeof(rowData) === 'undefined' || rowData == null || rowData == '') { return '-'; } - return '' + rowData + ''; + return rowData; } }, {field: 'gmtCreate', width: '180', title: '时间', align:'center',