...
|
...
|
@@ -118,6 +118,7 @@ class familyModel extends global.yoho.BaseModel { |
|
|
|
|
|
if (key === 'now') {
|
|
|
val.isNoOpen = true;
|
|
|
val.name = '敬请期待';
|
|
|
}
|
|
|
|
|
|
if (val.login === true) {
|
...
|
...
|
@@ -529,9 +530,9 @@ class familyModel extends global.yoho.BaseModel { |
|
|
let hideTips = true;
|
|
|
|
|
|
|
|
|
result[0].data.gender = (thisGender === '1' ? '男' : '女');
|
|
|
result[0].data.otherGender = (thisGender === '1' ? '女' : '男');
|
|
|
if (result[0].data.gender === '男') {
|
|
|
result[0].data.gender = (thisGender === '1' ? 'BOY' : 'GIRL');
|
|
|
result[0].data.otherGender = (thisGender === '1' ? 'GIRL' : 'BOY');
|
|
|
if (result[0].data.gender === 'BOY') {
|
|
|
result[0].data.genderId = 1;
|
|
|
result[0].data.otherGenderId = 2;
|
|
|
} else {
|
...
|
...
|
|