作者 景琛

没有unique还可绑定问题

... ... @@ -48,6 +48,9 @@ class Bind extends Api
// if ($users['bind_study'] == 1) {
// $this->error('您当前已经绑定过学生了,请勿重复操作');
// }
if (empty($res)){
$this->error('当前学生不存在');
}
Db::startTrans();
try {
db('study')
... ... @@ -96,10 +99,10 @@ class Bind extends Api
if (!empty($res['user_id'])){
$this->error('当前学生已经被绑定了');
}
if (empty($res)){
$this->error('当前学生不存在');
}
$users = db('user')->where('id', $user['id'])->find();
// if ($users['bind_study'] == 1) {
// $this->error('您当前已经绑定过学生了,请勿重复操作');
// }
Db::startTrans();
try {
db('study')
... ...