Przeglądaj źródła

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

西昌分支
dyy 5 miesięcy temu
rodzic
commit
120a022a41
1 zmienionych plików z 20 dodań i 4 usunięć
  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 Wyświetl plik

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


Ładowanie…
Anuluj
Zapisz