|
@@ -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;
|
|
|
+ }
|
|
|
+
|
|
|
}
|