|
|
@@ -148,10 +148,26 @@ var bootstrap = function ($, learun) { |
|
|
|
}, |
|
|
|
{ label: "年级", name: "Grade", width: 80, align: "left" }, |
|
|
|
{ label: "缴费年度", name: "FSYear", width: 80, align: "left" }, |
|
|
|
{ label: "收费标准", name: "YJAmount", width: 80, align: "left" }, |
|
|
|
{ label: "缴费金额", name: "SJAmount", width: 80, align: "left" }, |
|
|
|
{ label: "应缴余额", name: "NeedToPay", width: 80, align: "left" }, |
|
|
|
{ label: "超出应收额", name: "FSBlance", width: 80, align: "left" }, |
|
|
|
{ |
|
|
|
label: "收费标准", name: "YJAmount", width: 80, align: "left", formatter: function (cellvalue) { |
|
|
|
return cellvalue.toFixed(2); |
|
|
|
} |
|
|
|
}, |
|
|
|
{ |
|
|
|
label: "缴费金额", name: "SJAmount", width: 80, align: "left", formatter: function (cellvalue) { |
|
|
|
return cellvalue.toFixed(2); |
|
|
|
} |
|
|
|
}, |
|
|
|
{ |
|
|
|
label: "应缴余额", name: "NeedToPay", width: 80, align: "left", formatter: function (cellvalue) { |
|
|
|
return cellvalue.toFixed(2); |
|
|
|
} |
|
|
|
}, |
|
|
|
{ |
|
|
|
label: "超出应收额", name: "FSBlance", width: 80, align: "left", formatter: function (cellvalue) { |
|
|
|
return cellvalue.toFixed(2); |
|
|
|
} |
|
|
|
}, |
|
|
|
{ |
|
|
|
label: "缴费状态", name: "PayFeeStatus", width: 100, align: "left", |
|
|
|
formatter: function (cellvalue, row) { |
|
|
|