This commit is contained in:
parent
7c3f94fc25
commit
8bf6b47212
|
|
@ -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);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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",
|
||||
|
|
|
|||
|
|
@ -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));
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue