作者 景龙
1 个管道 的构建 失败 耗费 0 秒

调试支付

... ... @@ -14,7 +14,7 @@ return array(
'mch_id' => '1515355581', //支付商户ID
'key' => 'cccccccccccccccccccccccccccccc00',
// 'notify_url' => '/addons/epay/api/notify/type/wechat', //请勿修改此配置
'notify_url' => 'http://feipin.w.brotop.cn/api/Wxpay/notify', //请勿修改此配置
// 'notify_url' => 'http://feipin.w.brotop.cn/api/Wxpay/notify', //请勿修改此配置
'cert_client' => '/epay/certs/apiclient_cert.pem', // 可选, 退款,红包等情况时需要用到
'cert_key' => '/epay/certs/apiclient_key.pem',// 可选, 退款,红包等情况时需要用到
'log' => 1,
... ...
... ... @@ -7,6 +7,7 @@ use addons\epay\library\Service;
use app\admin\model\Porder;
use think\Db;
use Yansongda\Pay\Pay;
use think\Log;
use fast\Http;
use think\Validate;
/**
... ... @@ -93,6 +94,7 @@ class Wxpay extends Api
//你可以在这里你的业务处理逻辑,比如处理你的订单状态、给会员加余额等等功能
$porderModel = new Porder();
$porderModel->where(['uid' => $this->user_id,'p_id'=>6])->update(['status'=>$this->order_status[1]]);
Log::write('测试日志信息,这是警告级别,并且实时写入','notice');
//下面这句必须要执行,且在此之前不能有任何输出
$this->success('支付成功',$pay->success());
}
... ...