...
|
...
|
@@ -8,11 +8,13 @@ const co = require('bluebird').coroutine; |
|
|
|
|
|
|
|
|
function humanNum_wan(num) {
|
|
|
if (num > 9999) {
|
|
|
num = (num / 10000).toFixed(2) + '万'
|
|
|
}
|
|
|
|
|
|
return num;
|
|
|
|
|
|
// if (num > 9999) {
|
|
|
// num = (num / 10000).toFixed(2) + '万'
|
|
|
// }
|
|
|
|
|
|
// return num;
|
|
|
}
|
|
|
|
|
|
exports.beforeIn = (req, res, next) => {
|
...
|
...
|
|