作者 景琛

绑定学生问题

... ... @@ -45,9 +45,9 @@ class Bind extends Api
}
$users = db('user')->where('id', $user['id'])->find();
//halt($users);
if ($users['bind_study'] == 1) {
$this->error('您当前已经绑定过学生了,请勿重复操作');
}
// if ($users['bind_study'] == 1) {
// $this->error('您当前已经绑定过学生了,请勿重复操作');
// }
Db::startTrans();
try {
db('study')
... ... @@ -97,9 +97,9 @@ class Bind extends Api
$this->error('当前学生已经被绑定了');
}
$users = db('user')->where('id', $user['id'])->find();
if ($users['bind_study'] == 1) {
$this->error('您当前已经绑定过学生了,请勿重复操作');
}
// if ($users['bind_study'] == 1) {
// $this->error('您当前已经绑定过学生了,请勿重复操作');
// }
Db::startTrans();
try {
db('study')
... ...