@ -3123,6 +3123,11 @@ if (!window.BI) {
} else {
return _numberFormat((-text) + "", format.substr(numMod + 1));
}
//兼容格式处理负数的情况(copy:fr-jquery.format.js)
if (+text < 0 && format.charAt(0) !== '-') {
return _numberFormat((-text) + "", '-' + format);
var tp = text.split('.'), fp = format.split('.'),
tleft = tp[0] || '', fleft = fp[0] || '',
@ -20110,6 +20110,11 @@ BI.PopoverSection.EVENT_CLOSE = "EVENT_CLOSE";;(function () {
@ -75,6 +75,11 @@