Cherry 2 年之前
父节点
当前提交
b60f96eac0
共有 2 个文件被更改,包括 10 次插入6 次删除
  1. 5 5
      .env.sample
  2. 5 1
      application/api/controller/Join.php

+ 5 - 5
.env.sample

@@ -3,9 +3,9 @@ debug = false
 trace = false
 
 [database]
-hostname = 127.0.0.1
-database = fastadmin
-username = root
-password = root
+hostname = 120.79.86.50
+database = yutang_init
+username = yutang_init
+password = c2LHBMjnnCFpDSYa
 hostport = 3306
-prefix = fa_
+prefix = yt_

+ 5 - 1
application/api/controller/Join.php

@@ -159,6 +159,10 @@ class Join extends Api
         $fishery_model = new Fishery();
         // 申请的信息
         $info = $fishery_model::where(['user_id' => $user_id, 'type' => $input['type']])->order('id', 'desc')->find();
+        $has_apply = false;
+        if($info){
+            $has_apply = true;
+        }
 
         if ($info['logout_status'] == 2) {
             unset($info['id']);
@@ -167,7 +171,7 @@ class Join extends Api
         $info['z_name'] = $this->auth->z_name;
         $info['z_phone'] = $this->auth->z_phone;
 
-        $this->success('ok', ['has_apply' => !empty($info), 'detail' => $info]);
+        $this->success('ok', ['has_apply' => $has_apply, 'detail' => $info]);
     }
 
     /**