diff --git a/YLErpWeb/Views/SwapTrade2/TradeView.cshtml b/YLErpWeb/Views/SwapTrade2/TradeView.cshtml index 54ed37dc..e82b88bc 100644 --- a/YLErpWeb/Views/SwapTrade2/TradeView.cshtml +++ b/YLErpWeb/Views/SwapTrade2/TradeView.cshtml @@ -714,7 +714,7 @@ else { 平仓比例 - @(tc.ClosePercent.OtcFormatPercent()) + @(tc.ClosePercent.OtcFormatPercent(4)) 平仓名义本金 @(tc.CloseNotionalValue.OtcFormat(OtcFormatFlag.StockEqvNotional)) } diff --git a/YLErpWeb/wwwroot/Scripts/app/swaptrade/unwindSwapTrade.js b/YLErpWeb/wwwroot/Scripts/app/swaptrade/unwindSwapTrade.js index 66dd5ddd..27e031a7 100644 --- a/YLErpWeb/wwwroot/Scripts/app/swaptrade/unwindSwapTrade.js +++ b/YLErpWeb/wwwroot/Scripts/app/swaptrade/unwindSwapTrade.js @@ -1,7 +1,7 @@ //otcformat禁止千分位分组 window.otcformat.options.disableGrouping = true; -const inputFormatSwapRate = Object.freeze({ precision: otcformat.trading.premiumRateP.precision, append: '%' }); +const inputFormatSwapRate = Object.freeze({ precision: 4, append: '%', trimTailZeros: false }); const inputFormatTradePrice = Object.freeze({ precision: otcformat.trading.tradePrice.precision, append: '' }); const inputFormatTradeAmount = Object.freeze({ precision: otcformat.trading.notional.precision, append: '' }); const inputFormatEqvNotional = Object.freeze({ precision: 2, append: '', negative: true, trimTailZeros: false });