From 6b2ec7c8c1392dd60a9c5cab76c5aa5fdcff520c Mon Sep 17 00:00:00 2001 From: wjl <2452821485@qq.com> Date: Thu, 2 Jul 2026 18:50:58 +0800 Subject: [PATCH] =?UTF-8?q?=E5=9B=9E=E9=80=80TradingAmountAvg=E7=9A=84?= =?UTF-8?q?=E4=BF=AE=E6=94=B9=EF=BC=8C=E5=90=8E=E7=BB=AD=E5=85=A8=E4=BB=B7?= =?UTF-8?q?=EF=BC=88=E5=90=AB=E8=B4=B9=EF=BC=89=E6=88=96=E8=80=85=E5=85=A8?= =?UTF-8?q?=E4=BB=B7=EF=BC=88=E4=B8=8D=E5=90=AB=E8=B4=B9=EF=BC=89=E5=86=8D?= =?UTF-8?q?=E6=A2=B3=E7=90=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- YLErpWeb/wwwroot/Scripts/app/swaptrade/incomeSwapTrade.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/YLErpWeb/wwwroot/Scripts/app/swaptrade/incomeSwapTrade.js b/YLErpWeb/wwwroot/Scripts/app/swaptrade/incomeSwapTrade.js index cc3a55e9..878b87d6 100644 --- a/YLErpWeb/wwwroot/Scripts/app/swaptrade/incomeSwapTrade.js +++ b/YLErpWeb/wwwroot/Scripts/app/swaptrade/incomeSwapTrade.js @@ -44,7 +44,7 @@ const vue = new Vue({ this.initPosiNetPrice = this.floatPosition.PosiNetPrice; // 互换标的价格固定为期初净价,与平仓不同不需要用户填写 // 期初净价入库为相对价(如1.02),需转换为界面百分比形态(102),与平仓页保持一致 - this.floatPosition.TradingAmountAvg = this.floatPosition.PosiGrossPrice * this.multiplier; + this.floatPosition.TradingAmountAvg = this.floatPosition.initPosiNetPrice * this.multiplier; this.interestList = model.FlowEvents.filter((item) => { return item.InterestMode == 1 || item.InterestMode == 2 || item.InterestMode == 7 || item.InterestMode == 8 || item.InterestMode == 9; });