From e7017fb85c5580e11722e6b62f44fc960b921284 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=A9=AC=E5=86=B0=E5=86=B0?= <437394478@qq.com> Date: Wed, 26 Aug 2026 11:33:11 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E6=9F=A5=E7=9C=8B=E4=BA=A4=E6=98=93?= =?UTF-8?q?=E9=A1=B5=E9=9D=A2=E4=B8=8D=E6=98=BE=E7=A4=BA=E6=98=AF=E5=90=A6?= =?UTF-8?q?=E7=BD=9A=E6=81=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- YLErpWeb/Views/SwapTrade2/TradeView.cshtml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/YLErpWeb/Views/SwapTrade2/TradeView.cshtml b/YLErpWeb/Views/SwapTrade2/TradeView.cshtml index b50e1912..137a958c 100644 --- a/YLErpWeb/Views/SwapTrade2/TradeView.cshtml +++ b/YLErpWeb/Views/SwapTrade2/TradeView.cshtml @@ -235,6 +235,11 @@ 计息方式 @(TradeViewModel.GetSwapRateCalcModeDesc(trade.trade_extend.ExtendObj.InterestCalcMode)) + @* IsPenaltyInterest 为 bool;存量交易未保存该字段时反序列化为 false,统一展示为“否”。 *@ + + 是否罚息 + @(trade.trade_extend.ExtendObj.IsPenaltyInterest ? "是" : "否") + @* 是否开仓时收取开仓费 @(trade.trade_extend.ExtendObj.NeedOpenFee ? "是" : "否")