fix:修复交易审批页面小数位处理不合理情况

This commit is contained in:
xuyulong
2026-05-07 18:58:56 +08:00
parent 4e77ada8ac
commit 58c48845a0
@@ -168,7 +168,7 @@ var colModelGrid = [
sortable: false,
formatter: function (cellvalue, options, rowObject) {
if (rowObject.TradeType === "收益互换") {
return otcformat.flex(otcformat.trading.umprice(cellvalue), 2, 9, true, false, true);
return otcformat.flex(cellvalue, 2, otcformat.trading.umpriceP.precision, true, false, true);
}
return otcformat.trading.umprice(cellvalue);
}