...
|
...
|
@@ -60,7 +60,8 @@ class Pay extends Api |
|
|
$result = $app->order->unify([
|
|
|
'body' => '佛山市理想中网络科技有限公司',
|
|
|
'out_trade_no' => $pay_order_sn,//支付订单号
|
|
|
'total_fee' => $res['total_price']*100,//单位分
|
|
|
// 'total_fee' => $res['total_price']*100,//单位分
|
|
|
'total_fee' => 100,//单位分
|
|
|
'notify_url' => $ffg_host.'/api/pay/payOrderNotify', // 支付结果通知网址,如果不设置则会使用配置里的默认地址
|
|
|
'trade_type' => 'JSAPI', // 请对应换成你的支付方式对应的值类型
|
|
|
'openid' => $openid,
|
...
|
...
|
@@ -160,7 +161,8 @@ class Pay extends Api |
|
|
$result = $app->order->unify([
|
|
|
'body' => '佛山市理想中网络科技有限公司',
|
|
|
'out_trade_no' => $pay_order_sn,//支付订单号
|
|
|
'total_fee' => $data['total_price']*100,//单位分
|
|
|
// 'total_fee' => $data['total_price']*100,//单位分
|
|
|
'total_fee' => 100,//单位分
|
|
|
'notify_url' => $ffg_host.'/api/pay/purchaseNotify', // 支付结果通知网址,如果不设置则会使用配置里的默认地址
|
|
|
'trade_type' => 'JSAPI', // 请对应换成你的支付方式对应的值类型
|
|
|
'openid' => $data['openid'],
|
...
|
...
|
|