|
@@ -34,7 +34,7 @@ class User extends Base
|
|
|
public function index()
|
|
|
{
|
|
|
$auth = \app\common\library\Auth::instance();
|
|
|
- $auth->setAllowFields(['id', 'username', 'nickname', 'mobile', 'avatar', 'score', 'birthday', 'money', 'group', 'group_id', 'verification', 'child_user_count', 'child_user_count_1', 'child_user_count_2', 'total_consume','register_code','level','province_name','city_name','counties_name','pid','quota_num']);
|
|
|
+ $auth->setAllowFields(['id', 'username', 'nickname', 'mobile', 'avatar', 'score', 'birthday', 'money', 'group', 'group_id', 'verification', 'child_user_count', 'child_user_count_1', 'child_user_count_2', 'total_consume','register_code','level','province_name','city_name','counties_name','pid','quota_num','skm']);
|
|
|
$data = $auth->getUserinfo();
|
|
|
$data['avatar'] = $data['avatar'] ? cdnurl($data['avatar'], true) : '';
|
|
|
if (!isset($data['group'])) {
|
|
@@ -748,6 +748,7 @@ class User extends Base
|
|
|
$bio = $this->request->post('bio', '');
|
|
|
$birthday = $this->request->post('birthday');
|
|
|
$address = $this->request->post('address');
|
|
|
+ $skm = $this->request->post('skm','');
|
|
|
$avatar = $this->request->post('avatar', '', 'trim,strip_tags,htmlspecialchars');
|
|
|
if ($username) {
|
|
|
$exists = \app\common\model\User::where('username', $username)->where('id', '<>', $this->auth->id)->find();
|
|
@@ -762,6 +763,7 @@ class User extends Base
|
|
|
if (!empty($avatar)) {
|
|
|
$user->avatar = $avatar;
|
|
|
}
|
|
|
+ if($skm) $user->skm = $skm;
|
|
|
// 地址信息
|
|
|
if($address) {
|
|
|
$add_arr = explode('-',$address);
|