Showing
1 changed file
with
1 additions
and
1 deletions
@@ -457,7 +457,7 @@ class familyModel extends global.yoho.BaseModel { | @@ -457,7 +457,7 @@ class familyModel extends global.yoho.BaseModel { | ||
457 | head_ico: perInfo.headIco, | 457 | head_ico: perInfo.headIco, |
458 | nickname: perInfo.nickName, | 458 | nickname: perInfo.nickName, |
459 | gender: parseInt(perInfo.gender, 10), | 459 | gender: parseInt(perInfo.gender, 10), |
460 | - birthday: perInfo.birthday ? moment(perInfo.birthday).format('MM-DD') : '', | 460 | + birthday: perInfo.birthday ? moment(new Date(perInfo.birthday)).format('MM-DD') : '', |
461 | province: perInfo.province, | 461 | province: perInfo.province, |
462 | city: perInfo.city | 462 | city: perInfo.city |
463 | }); | 463 | }); |
-
Please register or login to post a comment