qifengquan hace 1 año
padre
commit
fada36ead2

+ 0 - 2
addons/epay/controller/Api.php

@@ -202,8 +202,6 @@ class Api extends Controller
         }elseif ($order['type']==2){
             User::score($order['money'],$order['uid'],'喜欢额度充值');
         }
-        //你可以在这里你的业务处理逻辑,比如处理你的订单状态、给会员加余额等等功能
-        //下面这句必须要执行,且在此之前不能有任何输出
         return $pay->success()->send();
     }
 

+ 33 - 2
application/api/controller/Information.php

@@ -3,7 +3,10 @@
 namespace app\api\controller;
 
 use app\common\controller\Api;
+use app\common\model\Apply;
 use app\common\model\Like;
+use app\common\model\SystemMessages;
+use app\common\model\User;
 
 /**
  * 消息
@@ -11,20 +14,48 @@ use app\common\model\Like;
 class Information extends Api
 {
     protected $noNeedRight = ['*'];
-    protected $noNeedLogin = ['*'];
+    protected $noNeedLogin = [''];
+
+    /**
+     * 消息
+     */
+    public function index(){
+
+    }
 
     /**
      * 彼此喜欢
      */
     public function eachLike(){
-        $like = Like::with('like')->where(['uid'=>$this->auth->id])->select();
+        $like = Like::with('like')->where(['uid'=>$this->auth->id])->order('id','desc')->select();
         foreach ($like as $k=>&$v){
             if($v['like']==null){
                 unset($like[$k]);
+            }else{
+                $v['like_user'] = User::where('id',$v['like']['uid'])->field('id,id_authentication,avatar,createtime,nickname,username')->find();
             }
         }
         $this->success('',$like);
     }
+    /**
+     * 我申请的
+     */
+    public function weApply(){
+        $uid = $this->auth->id;
+        $data = Apply::all(['uid'=>$uid]);
+        $this->success('',$data);
+    }
+    /**
+     * 系统通知
+     */
+    public function systemMessages(){
+        $uid = $this->auth->id;
+        $systemMessages = SystemMessages::all(['uid'=>$uid,'type'=>1,'status'=>1]);
+        foreach ($systemMessages as $v){
+            $v->save(['isread'=>1]);
+        }
+        $this->success('',$systemMessages);
+    }
 
 
 }

+ 1 - 0
application/api/controller/User.php

@@ -14,6 +14,7 @@ use app\common\model\Like;
 use app\common\model\MoneyLog;
 use app\common\model\Order;
 use app\common\model\Selection;
+use app\common\model\SystemMessages;
 use app\common\model\UserObject;
 use app\common\model\WorkAuthentication;
 use fast\Random;

+ 10 - 0
application/common/model/SystemMessages.php

@@ -34,6 +34,16 @@ class SystemMessages extends Model
         'title' => '工作认证已通过',
         'content' => '用户您好,经平台审核您的工作认证已通过审核!'
     ];
+//    //申请wx结果
+//    const wx_no = [
+//        'title' => '对方已拒绝',
+//        'content' => '用户您好,经平台审核您的工作认证不符合平台规范要求,没有通过审核,请重新上传!'
+//    ];
+//    const wx_yes = [
+//        'title' => '工作认证已通过',
+//        'content' => '用户您好,经平台审核您的工作认证已通过审核!'
+//    ];
+
     public static $operate=[
         'headimg_no'=>self::headimg_no,
         'headimg_yes'=>self::headimg_yes,