Authored by lijing

Merge branch 'feature/grow' of git.yoho.cn:fe/yohobuywap-node into feature/grow

... ... @@ -222,7 +222,7 @@ module.exports = class extends global.yoho.BaseModel {
_.forEach(result[1].data.data, function(val) {
build.push({
title: val.typeDesc,
time: _formatDay(val.createTime),
time: _formatDay(val.createTime * 1000),
value: val.growthValue
});
});
... ... @@ -249,7 +249,7 @@ module.exports = class extends global.yoho.BaseModel {
_.forEach(result[0].data.data, function(val) {
build.push({
title: val.typeDesc,
time: _formatDay(val.createTime),
time: _formatDay(val.createTime * 1000),
value: val.growthValue
});
});
... ...