From f7ecd730399226552344acbd96fa8c7bd9c8608b Mon Sep 17 00:00:00 2001 From: liangkun Date: Tue, 30 Aug 2022 09:47:06 +0800 Subject: [PATCH] =?UTF-8?q?=E6=96=B0=E7=94=9F=E7=BC=B4=E8=B4=B9=E5=88=97?= =?UTF-8?q?=E8=A1=A8=E7=BC=B4=E8=B4=B9=E7=8A=B6=E6=80=81=E7=BB=91=E5=AE=9A?= =?UTF-8?q?=E5=AD=97=E5=85=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Views/StuInfoFresh/PayFeeIndex.js | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/EducationalAdministration/Views/StuInfoFresh/PayFeeIndex.js b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/EducationalAdministration/Views/StuInfoFresh/PayFeeIndex.js index 9a4323864..9bafc9e8d 100644 --- a/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/EducationalAdministration/Views/StuInfoFresh/PayFeeIndex.js +++ b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/EducationalAdministration/Views/StuInfoFresh/PayFeeIndex.js @@ -302,8 +302,14 @@ var bootstrap = function ($, learun) { { label: '学号', name: 'StuNo', width: 100, align: "left" }, { label: '姓名', name: 'StuName', width: 100, align: "left" }, { - label: '线上缴费状态', name: 'PayFeeStatus', width: 100, align: "left", formatter: function (value) { - return value == 1 ? "已缴费" : "未缴费"; + label: '线上缴费状态', name: 'PayFeeStatus', width: 100, align: "left", formatterAsync: function (callback, value, row, op, $cell) { + learun.clientdata.getAsync('dataItem', { + key: value, + code: 'PayStatus', + callback: function (_data) { + callback(_data.text); + } + }); } }, { label: '线上缴费时间', name: 'PayFeeDate', width: 130, align: "left" },