|
@@ -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]);
|
|
|
}
|
|
|
|
|
|
/**
|