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); $('#codeValue').html(obj.code);
$('#name').html(obj.name); $('#name').html(obj.name);
$('#times').html(obj.times); $('#times').html(obj.times);
$('#money').html(obj.money); $('#money').html('¥ ' + obj.money);
setCjTable(obj.child); setCjTable(obj.child);
setFileTable(obj.fileList); setFileTable(obj.fileList);
} }

View File

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

View File

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