From 5128db33c86acaed763d69fc294ce3cd1c607cab Mon Sep 17 00:00:00 2001 From: ndbs Date: Sat, 11 Jun 2022 22:01:17 +0800 Subject: [PATCH] =?UTF-8?q?=E6=8E=92=E8=AF=BE=E6=95=B0=E6=8D=AE=E5=90=8C?= =?UTF-8?q?=E6=AD=A5=E5=A4=84=E7=90=86=E6=97=A5=E6=9C=9F=E5=9B=9E=E6=98=BE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Views/ArrangeLessonTerm/Index.js | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/EducationalAdministration/Views/ArrangeLessonTerm/Index.js b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/EducationalAdministration/Views/ArrangeLessonTerm/Index.js index f8c326aef..81ac9f950 100644 --- a/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/EducationalAdministration/Views/ArrangeLessonTerm/Index.js +++ b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/EducationalAdministration/Views/ArrangeLessonTerm/Index.js @@ -120,7 +120,12 @@ var bootstrap = function ($, learun) { url: top.$.rootUrl + '/EducationalAdministration/ArrangeLessonTerm/GetPageList', headData: [ { label: '标识列', name: 'ALTId', width: 200, align: "left" }, - { label: '上课日期', name: 'LessonDate', width: 200, align: "left" }, + { + label: '上课日期', name: 'LessonDate', width: 200, align: "left", + formatter: function (cellvalue) { + return learun.formatDate(cellvalue, 'yyyy-MM-dd'); + } + }, { label: '学年度', name: 'AcademicYearNo', width: 200, align: "left" }, { label: '学期', name: 'Semester', width: 200, align: "left" }, { label: '系所码', name: 'DeptNo', width: 200, align: "left" },