|
@@ -5,6 +5,7 @@ use AlibabaCloud\Client\Exception\ClientException;
|
|
|
use AlibabaCloud\Client\Exception\ServerException;
|
|
|
use app\common\library\AliPay;
|
|
|
use app\common\library\AliPay2;
|
|
|
+use app\common\library\Changlian;
|
|
|
use app\common\library\Shande;
|
|
|
use EasyWeChat\Factory;
|
|
|
use think\cache\driver\Redis;
|
|
@@ -826,26 +827,32 @@ class UserCenter extends Base
|
|
|
}
|
|
|
//测试排行
|
|
|
public function textlist(){
|
|
|
- $count = Db::name('store_member')->where('id',$this->get_uid())->value('phone');
|
|
|
- $arr = array('18589584883','13581775590','18768955603','18612921056','17634818774','15588500892');
|
|
|
- if(in_array($count,$arr)) {
|
|
|
- $count = 100;
|
|
|
- $list = Db::name('store_member')
|
|
|
- ->field('pid,count(*) count')
|
|
|
- ->where('pid','>',0)
|
|
|
- ->group('pid')
|
|
|
- ->order('count desc')
|
|
|
- ->limit($this->off_set,$this->page_num)
|
|
|
- ->select();
|
|
|
- foreach ($list as &$value){
|
|
|
- $users_info = Db::name('store_member')->field('headimg,name')->where('id',$value['pid'])->find();
|
|
|
- $value['name'] = $users_info['name'];
|
|
|
- $value['headimg'] = $users_info['headimg'];
|
|
|
- unset($value['pid']);
|
|
|
- }
|
|
|
- $this->success('成功', compact('count', 'list'));
|
|
|
- }
|
|
|
- $this->success('数据测试');
|
|
|
+ $obj = new Changlian();
|
|
|
+ $notifyUrl = 'https://'.$_SERVER['SERVER_NAME'].'/index.php/api/Pay/ChanglianRechargeOrderNotify';//回调地址
|
|
|
+ $returnUrl = 'https://'.$_SERVER['SERVER_NAME'].'/web/h5';
|
|
|
+ $result = $obj->changlian_pay();
|
|
|
+ $retrun_data['pay'] = $result;
|
|
|
+ $this->success('成功',$retrun_data);
|
|
|
+// $count = Db::name('store_member')->where('id',$this->get_uid())->value('phone');
|
|
|
+// $arr = array('18589584883','13581775590','18768955603','18612921056','17634818774','15588500892');
|
|
|
+// if(in_array($count,$arr)) {
|
|
|
+// $count = 100;
|
|
|
+// $list = Db::name('store_member')
|
|
|
+// ->field('pid,count(*) count')
|
|
|
+// ->where('pid','>',0)
|
|
|
+// ->group('pid')
|
|
|
+// ->order('count desc')
|
|
|
+// ->limit($this->off_set,$this->page_num)
|
|
|
+// ->select();
|
|
|
+// foreach ($list as &$value){
|
|
|
+// $users_info = Db::name('store_member')->field('headimg,name')->where('id',$value['pid'])->find();
|
|
|
+// $value['name'] = $users_info['name'];
|
|
|
+// $value['headimg'] = $users_info['headimg'];
|
|
|
+// unset($value['pid']);
|
|
|
+// }
|
|
|
+// $this->success('成功', compact('count', 'list'));
|
|
|
+// }
|
|
|
+// $this->success('数据测试');
|
|
|
}
|
|
|
//测试排行
|
|
|
public function numbernew(){
|
|
@@ -1179,39 +1186,48 @@ class UserCenter extends Base
|
|
|
$total_fee = $money;
|
|
|
switch ($pay_type){
|
|
|
case 'wx':
|
|
|
- $config = retrunWxConfig();
|
|
|
- $total_fee = $total_fee * 100;
|
|
|
- $config['notify_url'] = $this->request->root(true).'/api/Pay/WxRechargeOrderNotify';
|
|
|
- $app = Factory::payment($config);
|
|
|
-
|
|
|
- $post_data = [
|
|
|
- 'body' => $body,
|
|
|
- 'out_trade_no' => $order_no,
|
|
|
- 'total_fee' => $total_fee,
|
|
|
- 'attach'=>$this->uid, //自定义传值
|
|
|
- ];
|
|
|
- //trade_type SAPI--JSAPI支付(或小程序支付)、NATIVE--Native支付、APP--app支付,MWEB--H5支付
|
|
|
- if ($from=='wx'){
|
|
|
- $post_data['openid'] = $user['openid'];
|
|
|
- $post_data['trade_type'] = 'JSAPI';
|
|
|
- }elseif ($from=='h5'){
|
|
|
- $post_data['trade_type'] = 'MWEB';
|
|
|
- }
|
|
|
-
|
|
|
- $result = $app->order->unify($post_data);
|
|
|
- debug($result);
|
|
|
- if ($result['return_msg']=='OK'){
|
|
|
- if ($result['result_code']=='FAIL'){
|
|
|
- $com = false;
|
|
|
- }else{
|
|
|
- $order1 = $app->jssdk->bridgeConfig($result['prepay_id']);//执行二次签名返回参数
|
|
|
- $retrun_data['order_no'] = $order_no;
|
|
|
- $retrun_data['pay'] = json_decode($order1,true);
|
|
|
- }
|
|
|
- }else{
|
|
|
+ $obj = new Changlian();
|
|
|
+ $notifyUrl = 'https://'.$_SERVER['SERVER_NAME'].'/index.php/api/Pay/ChanglianRechargeOrderNotify';//回调地址
|
|
|
+ $returnUrl = 'https://'.$_SERVER['SERVER_NAME'].'/web/h5';
|
|
|
+ $result = $obj->changlian_pay($body,$order_no,$total_fee,'',$notifyUrl,$returnUrl);
|
|
|
+ if(empty($result)){
|
|
|
$com = false;
|
|
|
}
|
|
|
+ Db::commit();
|
|
|
break;
|
|
|
+// $config = retrunWxConfig();
|
|
|
+// $total_fee = $total_fee * 100;
|
|
|
+// $config['notify_url'] = $this->request->root(true).'/api/Pay/WxRechargeOrderNotify';
|
|
|
+// $app = Factory::payment($config);
|
|
|
+//
|
|
|
+// $post_data = [
|
|
|
+// 'body' => $body,
|
|
|
+// 'out_trade_no' => $order_no,
|
|
|
+// 'total_fee' => $total_fee,
|
|
|
+// 'attach'=>$this->uid, //自定义传值
|
|
|
+// ];
|
|
|
+// //trade_type SAPI--JSAPI支付(或小程序支付)、NATIVE--Native支付、APP--app支付,MWEB--H5支付
|
|
|
+// if ($from=='wx'){
|
|
|
+// $post_data['openid'] = $user['openid'];
|
|
|
+// $post_data['trade_type'] = 'JSAPI';
|
|
|
+// }elseif ($from=='h5'){
|
|
|
+// $post_data['trade_type'] = 'MWEB';
|
|
|
+// }
|
|
|
+//
|
|
|
+// $result = $app->order->unify($post_data);
|
|
|
+// debug($result);
|
|
|
+// if ($result['return_msg']=='OK'){
|
|
|
+// if ($result['result_code']=='FAIL'){
|
|
|
+// $com = false;
|
|
|
+// }else{
|
|
|
+// $order1 = $app->jssdk->bridgeConfig($result['prepay_id']);//执行二次签名返回参数
|
|
|
+// $retrun_data['order_no'] = $order_no;
|
|
|
+// $retrun_data['pay'] = json_decode($order1,true);
|
|
|
+// }
|
|
|
+// }else{
|
|
|
+// $com = false;
|
|
|
+// }
|
|
|
+// break;
|
|
|
case 'zfb':
|
|
|
$obj = new Moyun();
|
|
|
$notifyUrl = 'https://'.$_SERVER['SERVER_NAME'].'/index.php/api/Pay/moyunRechargeOrderNotify';//回调地址
|