diff --git a/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/EducationalAdministration/Views/EmpReportCard/Index.js b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/EducationalAdministration/Views/EmpReportCard/Index.js index dde70c354..7128a0e09 100644 --- a/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/EducationalAdministration/Views/EmpReportCard/Index.js +++ b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/EducationalAdministration/Views/EmpReportCard/Index.js @@ -99,15 +99,21 @@ var bootstrap = function ($, learun) { }, { label: "电子成绩单提交", name: "ElectronicStatus", width: 100, align: "left", - formatter: function (cellvalue, rowObject) { - return cellvalue == 1 ? "" : ""; + //formatter: function (cellvalue, rowObject) { + // return cellvalue == 1 ? "" : ""; + //} + formatter: function (cellvalue) { + return cellvalue == "1" ? "已提交" : "未提交"; } }, { label: "电子成绩单提交时间", name: "ElectronicTime", width: 130, align: "left" }, { label: "纸质成绩单提交", name: "PaperStatus", width: 100, align: "left", - formatter: function (cellvalue, rowObject) { - return cellvalue == 1 ? "" : ""; + //formatter: function (cellvalue, rowObject) { + // return cellvalue == 1 ? "" : ""; + //} + formatter: function (cellvalue) { + return cellvalue == "1" ? "已提交" : "未提交"; } }, { label: "纸质成绩单提交时间", name: "PaperTime", width: 130, align: "left" },