Showing
1 changed file
with
2 additions
and
2 deletions
@@ -222,7 +222,7 @@ module.exports = class extends global.yoho.BaseModel { | @@ -222,7 +222,7 @@ module.exports = class extends global.yoho.BaseModel { | ||
222 | _.forEach(result[1].data.data, function(val) { | 222 | _.forEach(result[1].data.data, function(val) { |
223 | build.push({ | 223 | build.push({ |
224 | title: val.typeDesc, | 224 | title: val.typeDesc, |
225 | - time: _formatDay(val.createTime), | 225 | + time: _formatDay(val.createTime * 1000), |
226 | value: val.growthValue | 226 | value: val.growthValue |
227 | }); | 227 | }); |
228 | }); | 228 | }); |
@@ -249,7 +249,7 @@ module.exports = class extends global.yoho.BaseModel { | @@ -249,7 +249,7 @@ module.exports = class extends global.yoho.BaseModel { | ||
249 | _.forEach(result[0].data.data, function(val) { | 249 | _.forEach(result[0].data.data, function(val) { |
250 | build.push({ | 250 | build.push({ |
251 | title: val.typeDesc, | 251 | title: val.typeDesc, |
252 | - time: _formatDay(val.createTime), | 252 | + time: _formatDay(val.createTime * 1000), |
253 | value: val.growthValue | 253 | value: val.growthValue |
254 | }); | 254 | }); |
255 | }); | 255 | }); |
-
Please register or login to post a comment