金柚静态 支付修改10

This commit is contained in:
“wanyongkang”
2024-02-02 19:21:33 +08:00
parent 807e3386d9
commit 31c1a75d19
2 changed files with 3 additions and 2 deletions

View File

@@ -268,10 +268,11 @@ class Jinyoujt extends Controller
];
echo json_encode($info);
} else if($request_data['pay_type'] == $order_enum::$Wechat) {
$order_model->add($order_info);
//微信支付
$wxpay = new Wxpay();
//添加订单
$order_model->add($order_info);
$param = [
'username' => $this->userinfo['LoginName'],

View File

@@ -57,7 +57,7 @@ class Account extends Model
'DeleteTag' => 0,
'Remark' => $account->region . $account->address,
'Raw' => $account->inlet_website,
'game_id' => $account->game_id,
'game_id' => empty($account->game_id)?0:$account->game_id,
];
$account_list[] = $accounts;
}