This commit is contained in:
cwchen 2025-01-21 11:25:20 +08:00
parent 7c3f94fc25
commit 8bf6b47212
3 changed files with 8 additions and 5 deletions

View File

@ -50,7 +50,7 @@ function getDetails() {
$('#codeValue').html(obj.code);
$('#name').html(obj.name);
$('#times').html(obj.times);
$('#money').html(obj.money);
$('#money').html('¥ ' + obj.money);
setCjTable(obj.child);
setFileTable(obj.fileList);
}

View File

@ -126,7 +126,7 @@ function initTable() {
},
{
field: "times",
width: '12%',
width: '14%',
title: "合同有效期",
unresize: true,
align: "center",
@ -139,6 +139,9 @@ function initTable() {
unresize: true,
align: "center",
sort:true,
templet: function (d) {
return '<span>¥ '+(d.money ? d.money : 0)+'</span>'
}
},
{
field: "fileNum",

View File

@ -26,9 +26,9 @@ function getStatistics() {
$('#num').html(parseInt(obj.proNum));
$('#num2').html(obj.needNum);
$('#num3').html(parseInt(obj.supNum));
$('#num4').html(parseInt(obj.money));
$('#num5').html(parseInt(obj.yfkMoney));
$('#num6').html(parseInt(obj.dfkMoney));
$('#num4').html('¥ ' + parseInt(obj.money));
$('#num5').html('¥ ' +parseInt(obj.yfkMoney));
$('#num6').html('¥ ' +parseInt(obj.dfkMoney));
}
}