校验地址逻辑
This commit is contained in:
parent
b72952ce22
commit
a6460ecaf0
@ -76,7 +76,7 @@ class UserLogic extends BaseLogic
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public static function StoreAdd(array $params)
|
public static function checkAddress(array $params)
|
||||||
{
|
{
|
||||||
$user_ship=$params['user_ship']??0;
|
$user_ship=$params['user_ship']??0;
|
||||||
if($user_ship==2){
|
if($user_ship==2){
|
||||||
@ -106,6 +106,11 @@ class UserLogic extends BaseLogic
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
public static function StoreAdd(array $params)
|
||||||
|
{
|
||||||
|
self::checkAddress($params);
|
||||||
$passwordSalt = Config::get('project.unique_identification');
|
$passwordSalt = Config::get('project.unique_identification');
|
||||||
$password = create_password(123456, $passwordSalt);
|
$password = create_password(123456, $passwordSalt);
|
||||||
$defaultAvatar = config('project.default_image.admin_avatar');
|
$defaultAvatar = config('project.default_image.admin_avatar');
|
||||||
|
@ -89,6 +89,10 @@ class StoreController extends BaseApiController
|
|||||||
return $this->fail(UserUserLogic::getError());
|
return $this->fail(UserUserLogic::getError());
|
||||||
}
|
}
|
||||||
}else{
|
}else{
|
||||||
|
UserUserLogic::checkAddress($params);
|
||||||
|
if(UserUserLogic::hasError()){
|
||||||
|
return $this->fail(UserUserLogic::getError());
|
||||||
|
}
|
||||||
$find['real_name']=$params['real_name'];
|
$find['real_name']=$params['real_name'];
|
||||||
$find['label_id']=$params['label_id']??0;
|
$find['label_id']=$params['label_id']??0;
|
||||||
$find->save();
|
$find->save();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user