|
@@ -374,7 +374,9 @@ class Datum extends Base
|
|
$url_id = input('get.url_id');
|
|
$url_id = input('get.url_id');
|
|
$detail = DatumUrl::where('id',$url_id)->find()->toArray();
|
|
$detail = DatumUrl::where('id',$url_id)->find()->toArray();
|
|
$is_release = UserLearn::checkRelease($this->user_id,2,$detail['datum_id']);
|
|
$is_release = UserLearn::checkRelease($this->user_id,2,$detail['datum_id']);
|
|
- if($detail['is_deleted'] == 1 || $detail['status'] == 0 || $is_release == 0) $this->error('该资料已下架');
|
|
|
|
|
|
+ if($is_release == 0){
|
|
|
|
+ if($detail['is_deleted'] == 1 || $detail['status'] == 0) $this->error('该资料已下架');
|
|
|
|
+ }
|
|
$detail['series_title'] =DatumIntro::where('id',$detail['datum_id'])->value('title');
|
|
$detail['series_title'] =DatumIntro::where('id',$detail['datum_id'])->value('title');
|
|
$detail['follow_switch'] = PlatformSwitch::checkSwitch($this->user_id,$detail['datum_id'],4);
|
|
$detail['follow_switch'] = PlatformSwitch::checkSwitch($this->user_id,$detail['datum_id'],4);
|
|
$detail['collect_num'] = UserCollect::where(['coll_type'=>2,'coll_id'=>$detail['datum_id'],'children_id'=>$detail['id']])->count();
|
|
$detail['collect_num'] = UserCollect::where(['coll_type'=>2,'coll_id'=>$detail['datum_id'],'children_id'=>$detail['id']])->count();
|
|
@@ -567,7 +569,7 @@ class Datum extends Base
|
|
$res= UserDatum::create($data) ;
|
|
$res= UserDatum::create($data) ;
|
|
}
|
|
}
|
|
|
|
|
|
- // UserMessage::sendUserMessage($this->user_id,'datum',1,0,0,$id ? $id:$res->id);
|
|
|
|
|
|
+ // UserMessage::sendUserMessage($this->user_id,'datum',1,0,0,$id ? $id:$res->id);
|
|
$this->success('提交成功,请等待审核',['id'=> $id ? :$res->id]);
|
|
$this->success('提交成功,请等待审核',['id'=> $id ? :$res->id]);
|
|
}
|
|
}
|
|
|
|
|