songxingwei hace 3 años
padre
commit
711cc40b0b

+ 24 - 0
application/api/controller/Index.php

@@ -327,6 +327,30 @@ class Index extends Api
 
 
     /**
+     * @title 支付查看资料
+     * @desc 支付查看资料
+     * @url /api/Index/want_know_pay
+     * @method POST
+     * @tag 基础
+     * @header
+     * @param  name:user_id type:int require:1 desc:想认识的用户id
+     */
+    public function want_know_pay(){
+        $this->check_login();
+        $user_id = intval(input('user_id'));  //用户id
+        if (!$user_id) $this->error('用户ID为空!');
+//        if (!$pool_id) $this->error('互选池ID为空!');
+        $result = ElectPool::wantKnowPay($user_id);
+        if ($result['code']){
+            $this->success($result['msg']);
+        }else{
+            $this->error($result['msg']);
+        }
+    }
+
+
+
+    /**
      * @title 想认识
      * @desc 想认识
      * @url /api/Index/want_know

+ 39 - 6
application/common/model/ElectPool.php

@@ -960,6 +960,42 @@ class ElectPool Extends Model
     }
 
 
+
+    /**
+     * 想认识支付
+     */
+    public static function wantKnowPay($user_id){
+        $user = app()->session->get('us');
+        $userinfo = User::get($user['id']);
+        $touser = Db::name('User')->where('id',$user_id)->find();
+        if (!$touser)
+            return Common::return_error('用户不存在');
+        $pay = UserPay::where('user_id',$user['id'])->where('to_user_id',$user_id)->find();
+        if ($pay)
+            return Common::return_error('已经支付过');
+
+
+        $integral = Config::get_values('want_know_integral');  //扣除的积分
+        if ($userinfo['integral'] < $integral)
+            return Common::return_error('积分不足');
+
+        $data['user_id'] = $user['id'];
+        $data['to_user_id'] = $user_id;
+        Db::startTrans();
+        try {
+            User::integral($integral,$user['id'],'想查看 '.$touser['nickname'].'资料');
+            $data['integral'] = $integral;
+            UserPay::create($data);
+            Db::commit();
+            return Common::return_success('成功');
+        }catch (Exception $e) {
+            Db::rollback();
+            return Common::return_error('失败');
+        }
+    }
+
+
+
     /**
      * 想认识
      */
@@ -974,9 +1010,9 @@ class ElectPool Extends Model
         if (!User::checkUserIformationPerfect($user['id']))
             return Common::return_error('未完善资料,无法获取');
 
-        $integral = Config::get_values('want_know_integral');  //扣除的积分
-        if ($userinfo['integral'] < $integral)
-            return Common::return_error('积分不足');
+//        $integral = Config::get_values('want_know_integral');  //扣除的积分
+//        if ($userinfo['integral'] < $integral)
+//            return Common::return_error('积分不足');
 
         //查看我是否已经喜欢过
         $want_know = UserWantKnow::where('user_id',$user['id'])->where('to_user_id',$user_id)->count();
@@ -987,11 +1023,8 @@ class ElectPool Extends Model
         $data['pool_id'] = $pool_id;
         Db::startTrans();
         try {
-            User::integral($integral,$user['id'],'想查看 '.$touser['nickname'].'资料');
-            $data['integral'] = $integral;
             $knowid = UserWantKnow::create($data);
 
-
             //消息推送
           //  $openid = User::where('id',$user_id)->value('openid');
             $openid = User::where('administrator',1)->where('is_del',1)->order('id asc')->limit(1)->value('openid');

+ 21 - 0
application/common/model/UserPay.php

@@ -0,0 +1,21 @@
+<?php
+
+namespace app\common\model;
+
+use think\Model;
+
+/**
+ * 想认识支付记录
+ */
+class UserPay Extends Model
+{
+
+    // 开启自动写入时间戳字段
+    protected $autoWriteTimestamp = 'TIMESTAMP';
+    // 定义时间戳字段名
+    protected $createTime = 'create_at';
+    protected $updateTime = '';
+    // 追加属性
+    protected $append = [
+    ];
+}