Browse Source

【修改】缴费列表页金额显示两位小数;

西昌分支
dyy 5 months ago
parent
commit
120a022a41
1 changed files with 20 additions and 4 deletions
  1. +20
    -4
      Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/ReceiveSendFeeManagement/Views/FinaChargeStuYear/Index.js

+ 20
- 4
Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/ReceiveSendFeeManagement/Views/FinaChargeStuYear/Index.js View File

@@ -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) {


Loading…
Cancel
Save