|
|
|
@ -99,7 +99,14 @@ class OtherController extends CommonController
|
|
|
|
if (!$result) {
|
|
|
|
if (!$result) {
|
|
|
|
return $this->fail([ResponseCode::ERROR_PARAMETER, '获取失败']);
|
|
|
|
return $this->fail([ResponseCode::ERROR_PARAMETER, '获取失败']);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return $this->success($result);
|
|
|
|
$list = [];
|
|
|
|
|
|
|
|
foreach ($result as $item) {
|
|
|
|
|
|
|
|
if ($item['status'] == '未注册') {
|
|
|
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
$list[] = $item;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
return $this->success($list);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|
|