From 96b0ecea8d70faf02b5ca0c83411d52cfa9c388d Mon Sep 17 00:00:00 2001 From: ndbs Date: Thu, 19 May 2022 14:10:33 +0800 Subject: [PATCH] =?UTF-8?q?=E5=AF=B9=E4=BA=A4=E6=98=93=E9=87=91=E9=A2=9D?= =?UTF-8?q?=E5=92=8C=E4=BD=99=E9=A2=9D=E8=BF=9B=E8=A1=8C=E5=A4=84=E7=90=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Views/MealCardRunTab/Index.js | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/EducationalAdministration/Views/MealCardRunTab/Index.js b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/EducationalAdministration/Views/MealCardRunTab/Index.js index 5457669d2..94186c7f0 100644 --- a/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/EducationalAdministration/Views/MealCardRunTab/Index.js +++ b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/EducationalAdministration/Views/MealCardRunTab/Index.js @@ -136,8 +136,18 @@ var bootstrap = function ($, learun) { { label: '身份证号', name: 'personId', width: 150, align: "left" }, { label: '身份名称', name: 'identiName', width: 80, align: "left" }, { label: '流水类型', name: 'flowtype', width: 100, align: "left" }, - { label: '交易金额', name: 'flowamount', width: 100, align: "left" }, - { label: '余额', name: 'balance', width: 100, align: "left" }, + { + label: '交易金额', name: 'flowamount', width: 100, align: "left", + formatter: function (cellvalue) { + return cellvalue / 10000; + } + }, + { + label: '余额', name: 'balance', width: 100, align: "left", + formatter: function (cellvalue) { + return cellvalue / 10000; + } + }, { label: '卡号', name: 'cardNo', width: 100, align: "left" }, { label: '中心时间', name: 'centralTm', width: 150, align: "left" }, { label: '中心序号', name: 'centralNo', width: 100, align: "left" },