This commit is contained in:
aozhiwei 2021-11-29 14:49:34 +08:00
parent 4bbbfad21c
commit 38cb99a941
2 changed files with 4 additions and 2 deletions

View File

@ -30,7 +30,7 @@ class User(object):
],
'response': [
_common.RspHead(),
['info',_common.UserInfo(), '新后的用户信息'],
['property_chg', _common.PropertyChg(), '属性变'],
]
},
{

View File

@ -130,7 +130,9 @@ class UserController extends BaseAuthedController {
$this->_updateUserInfo($fieldsKv);
}
$this->_rspData(array(
'info' => User::info($this->_getUserInfo())
'property_chg' => array(
'user_info' => User::info($this->_getUserInfo())
)
));
}