Bugfix 修改字段错误

This commit is contained in:
wjl
2026-07-02 19:24:14 +08:00
parent 6b2ec7c8c1
commit bfb69c2eae
@@ -44,7 +44,7 @@ const vue = new Vue({
this.initPosiNetPrice = this.floatPosition.PosiNetPrice;
// 互换标的价格固定为期初净价,与平仓不同不需要用户填写
// 期初净价入库为相对价(如1.02),需转换为界面百分比形态(102),与平仓页保持一致
this.floatPosition.TradingAmountAvg = this.floatPosition.initPosiNetPrice * this.multiplier;
this.floatPosition.TradingAmountAvg = this.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;
});