wangxiaodong há 3 anos atrás
pai
commit
351182cf71
2 ficheiros alterados com 50 adições e 1 exclusões
  1. 42 0
      app/api/controller/Prize.php
  2. 8 1
      config/app.php

+ 42 - 0
app/api/controller/Prize.php

@@ -2,6 +2,7 @@
 namespace app\api\controller;
 
 
+use EasyWeChat\Factory;
 use think\facade\Db;
 
 class Prize extends BaseApi
@@ -144,4 +145,45 @@ class Prize extends BaseApi
         $data['sign_card_rule'] = $info['sign_card_rule'];
         return $this->response($this->success($data,'成功'));
     }
+
+    /**
+     * 购买补签卡
+     * */
+    public function buySignCard(){
+        $token = $this->checkToken();
+        if ($token['code'] < 0) return $this->response($token);
+        $uid = $this->member_id;
+        $user_info = Db::table('v4member')->field('weapp_openid')->where(['member_id'=>$uid])->find();
+        $sign_card_money = Db::table('v4config_md')->where(['type'=>'prize','name'=>'sign_card_money'])->value('value');
+        if ($sign_card_money <= 0){
+            return $this->response($this->error('','暂时无法购买'));
+        }
+        $app = Factory::payment(Config('mini_program'));
+        $jssdk = $app->jssdk;
+        $result = $app->order->unify([
+            'body' => '入驻商家',
+            'out_trade_no' => $this->create_order_no(),
+            'total_fee' => $sign_card_money*100,
+            'notify_url' => 'https://'.$_SERVER['HTTP_HOST'].'/api/prize/sign_notify',
+            'trade_type' => 'JSAPI',
+            'openid' => $user_info['weapp_openid'],
+        ]);
+        if ($result['return_code'] == 'SUCCESS' && $result['result_code'] == 'SUCCESS') {
+            $prepayId = $result['prepay_id'];
+            $json = $jssdk->sdkConfig($prepayId);
+            return $this->response($this->error(['config'=>$json],'暂时无法购买'));
+        } else {
+            return $this->response($this->error('','支付失败'));
+        }
+
+    }
+
+    /**
+     * 订单号
+     * */
+    function create_order_no() {
+        $order_no = date('Ymd').substr(time(), -5) . substr(microtime(), 2, 5) . sprintf('%02d', rand(1000, 9999));
+        return $order_no;
+    }
+
 }

+ 8 - 1
config/app.php

@@ -43,6 +43,13 @@ return [
         '0'=>'谢谢参与',
         '1'=>'积分',
         '2'=>'囧币',
-    ]
+    ],
+    'mini_program'=>[
+        'app_id' => 'wxf3b25ca529432d75',
+        'secret' => '9b31b703c93ae4cb5bc1d82961784274',
+        'mch_id'             => '1614043635',
+        'key'                => 'A4031e44d9e869446549257afb536a06',   // API 密钥
+        'notify_url'         => '',     // 你也可以在下单时单独设置来想覆盖它
+    ],
 
 ];