增加支付/缴费/提现

This commit is contained in:
cuibaocheng 2021-09-02 14:26:50 +08:00
parent 6889a3b070
commit 7568f51e28

View File

@ -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 <span style="color: red">RMB</span>';
}
return (rowData / 100.00) + ' <span style="color: red">RMB</span>';
}