fix:修复交易审批页面小数位处理不合理情况
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user