Unverified Commit 88a86b58 authored by liuzheng712's avatar liuzheng712

Merge branch 'dev'

parents 67a0f132 63d9bbbf
...@@ -196,7 +196,9 @@ export class AppService implements OnInit { ...@@ -196,7 +196,9 @@ export class AppService implements OnInit {
User.wechat = data['wechat']; User.wechat = data['wechat'];
User.comment = data['comment']; User.comment = data['comment'];
User.date_expired = data['date_expired']; User.date_expired = data['date_expired'];
User.phone = data['phone'].toString(); if (data['phone']) {
User.phone = data['phone'].toString();
}
User.logined = data['logined']; User.logined = data['logined'];
this._logger.debug(User); this._logger.debug(User);
}, },
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment