feat: 修改 IndexController 中的订单号

This commit is contained in:
mkm 2024-06-24 14:10:57 +08:00
parent 2524a5766c
commit 883847e49d
2 changed files with 11 additions and 1 deletions

View File

@ -29,7 +29,7 @@ class IndexController extends BaseApiController
public function index()
{
$order = [
'out_trade_no' => 'CZ1719199275922103',
'out_trade_no' => 'CZ1719197818549414',
];
$app = new PayService(0);

View File

@ -441,6 +441,16 @@ class LoginLogic extends BaseLogic
*/
public static function updateUser($params, $userId)
{
$find=User::where(['mobile' =>$params['mobile']])->find();
if($find){
$auth=UserAuth::where('user_id',$find['id'])->find();
if($auth){
self::$error ='该手机号已被绑定';
return false;
}else{
UserAuth::where('user_id',$userId)->update(['user_id'=>$find['id']]);
}
}
$data=[
'mobile'=>$params['mobile'],
'is_new_user' => YesNoEnum::NO