|
@@ -83,7 +83,8 @@ class UserBank extends Model
|
|
$user = User::info();
|
|
$user = User::info();
|
|
extract($params);
|
|
extract($params);
|
|
$bank = self::where(['user_id' => $user->id, 'type' => $type])->find();
|
|
$bank = self::where(['user_id' => $user->id, 'type' => $type])->find();
|
|
- if ($type == 'wechat') {
|
|
|
|
|
|
+
|
|
|
|
+ /* if ($type == 'wechat') {
|
|
$platform = request()->header('platform');
|
|
$platform = request()->header('platform');
|
|
$userOauth = \addons\shopro\model\UserOauth::get([
|
|
$userOauth = \addons\shopro\model\UserOauth::get([
|
|
'user_id' => $user->id,
|
|
'user_id' => $user->id,
|
|
@@ -94,13 +95,18 @@ class UserBank extends Model
|
|
$bank_name = '微信用户';
|
|
$bank_name = '微信用户';
|
|
$card_no = $userOauth->openid;
|
|
$card_no = $userOauth->openid;
|
|
}
|
|
}
|
|
- }
|
|
|
|
|
|
+ }*/
|
|
|
|
+
|
|
if ($bank) {
|
|
if ($bank) {
|
|
$bank->real_name = $real_name;
|
|
$bank->real_name = $real_name;
|
|
$bank->bank_name = $bank_name;
|
|
$bank->bank_name = $bank_name;
|
|
$bank->card_no = $card_no;
|
|
$bank->card_no = $card_no;
|
|
$bank->type = $type;
|
|
$bank->type = $type;
|
|
if(isset($skm)) $bank->skm = $skm;
|
|
if(isset($skm)) $bank->skm = $skm;
|
|
|
|
+
|
|
|
|
+ // dump($type);die();
|
|
|
|
+
|
|
|
|
+ //Db::table('fa_shopro_user_bank')->insert(['real_name'=>$real_name,'bank_name'=>$bank_name,'card_no'=>$card_no,'type'=>$type,'skm'=>$skm]);
|
|
$bank->save();
|
|
$bank->save();
|
|
} else {
|
|
} else {
|
|
$bank = new self();
|
|
$bank = new self();
|