Showing
1 changed file
with
6 additions
and
4 deletions
@@ -8,11 +8,13 @@ const co = require('bluebird').coroutine; | @@ -8,11 +8,13 @@ const co = require('bluebird').coroutine; | ||
8 | 8 | ||
9 | 9 | ||
10 | function humanNum_wan(num) { | 10 | function humanNum_wan(num) { |
11 | - if (num > 9999) { | ||
12 | - num = (num / 10000).toFixed(2) + '万' | ||
13 | - } | ||
14 | - | ||
15 | return num; | 11 | return num; |
12 | + | ||
13 | + // if (num > 9999) { | ||
14 | + // num = (num / 10000).toFixed(2) + '万' | ||
15 | + // } | ||
16 | + | ||
17 | + // return num; | ||
16 | } | 18 | } |
17 | 19 | ||
18 | exports.beforeIn = (req, res, next) => { | 20 | exports.beforeIn = (req, res, next) => { |
-
Please register or login to post a comment