作者 开飞机的舒克

解决用户绑定学生问题

... ... @@ -34,6 +34,10 @@ class Bind extends Api
if (empty($unique)) {
$this->error('参数错误', ['status' => 2]);
}
$res = \db('study')->where('unique',$unique)->value('user_id');
if (!empty($res)){
$this->error('当前学生已经被绑定了');
}
$is_bind = db('user')->where('id', $user['id'])->value('bind_study');
// if ($is_bind == 1) {
// $this->error('您当前已经绑定过学生了,请勿重复操作', $is_bind);
... ... @@ -77,6 +81,10 @@ class Bind extends Api
if (empty($unique)) {
$this->error('参数错误', ['status' => 2]);
}
$res = \db('study')->where('unique',$unique)->value('user_id');
if (!empty($res)){
$this->error('当前学生已经被绑定了');
}
$is_bind = db('user')->where('id', $user['id'])->value('bind_study');
// if ($is_bind == 1) {
// $this->error('您当前已经绑定过学生了,请勿重复操作', $is_bind);
... ...