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" },