...
|
...
|
@@ -32,7 +32,7 @@ const online = (req, res, next) => { |
|
|
|
|
|
_.forEach(promotion, p => {
|
|
|
if (p.promotion === 'YOHO币') {
|
|
|
coin = parseInt(parseFloat(p.promotionAmount.substring(2, p.promotionAmount.length)) * 100);
|
|
|
coin = parseInt(parseFloat(p.promotionAmount.substring(2, p.promotionAmount.length)) * 100, 10);
|
|
|
}
|
|
|
});
|
|
|
|
...
|
...
|
@@ -111,7 +111,7 @@ const callback = (req, res) => { |
|
|
|
|
|
_.forEach(promotion, p => {
|
|
|
if (p.promotion === 'YOHO币') {
|
|
|
coin = _.toNumber(p.promotionAmount.substring(2, p.promotionAmount.length)) * 100;
|
|
|
coin = parseInt(parseFloat(p.promotionAmount.substring(2, p.promotionAmount.length)) * 100, 10);
|
|
|
}
|
|
|
});
|
|
|
|
...
|
...
|
|