diff --git a/src/main/resources/templates/account/list.html b/src/main/resources/templates/account/list.html
index c21fd4f..113a3cd 100644
--- a/src/main/resources/templates/account/list.html
+++ b/src/main/resources/templates/account/list.html
@@ -123,8 +123,8 @@
{field: 'accountMoney', width: 180, title: '账户金额', align:'center',
templet: function(row) {
var rowData = row[this.field];
- if(typeof(rowData) === 'undefined' || rowData == null || rowData == '') {
- return '-';
+ if(rowData == 0) {
+ return '0.00 RMB';
}
return (rowData / 100.00) + ' RMB';
}