|
@@ -42,18 +42,31 @@ class Money extends Common
|
|
|
*/
|
|
|
public function recharge()
|
|
|
{
|
|
|
- $rechar_id = $this->request->request("rechar_id");// 充值金额配置ID
|
|
|
+ $rechar_id = $this->request->request("rechar_id",0);// 充值金额配置ID
|
|
|
$type = $this->request->request("type", "wechat");// 充值类型:wechat:微信支付,alipay:支付宝支付
|
|
|
$method = $this->request->request("method", "miniapp");// 支付方式:app:app支付,miniapp:小程序支付
|
|
|
$openid = $this->request->request("openid", "");// 非小程序支付无需传值
|
|
|
$params_from = $this->request->request("params_from");// 平台参数
|
|
|
- if (!$rechar_id) {
|
|
|
+ $amounts = $this->request->request("amounts",0);// 自定义金额
|
|
|
+ if (!$rechar_id && empty($amounts)) {
|
|
|
$this->error(__('Invalid parameters'));
|
|
|
}
|
|
|
+ if (!preg_match("/^-?\d+$/",$amounts)) {
|
|
|
+ $this->error('金额必须是整数');
|
|
|
+ }
|
|
|
$user_id = $this->auth->id;
|
|
|
// 获取充值金额配置信息
|
|
|
- $recharMode = new \app\common\model\RecharConfig();
|
|
|
- $recharInfo = $recharMode->where(["id" => $rechar_id])->find();
|
|
|
+ if (!empty($rechar_id)) {
|
|
|
+ $recharMode = new \app\common\model\RecharConfig();
|
|
|
+ $recharInfo = $recharMode->where(["id" => $rechar_id])->find();
|
|
|
+ } else {
|
|
|
+ $amountsNew = $amounts * 100;
|
|
|
+ $recharInfo = [
|
|
|
+ 'money' => $amountsNew,
|
|
|
+ 'jewel' => $amountsNew,
|
|
|
+ 'jewel_full' => $amountsNew,
|
|
|
+ ];
|
|
|
+ }
|
|
|
if (!$recharInfo) $this->error("金额配置信息未找到!");
|
|
|
$out_trade_no = date("YmdHis") . rand(100000, 999999);
|
|
|
$title = "充值钻石";
|