noticeService = $noticeService; $this->jobsService = $jobsService; } public function index(Request $request) { $size = 5; $return_data = array(); $where[] = array('is_display','=','1'); $notices = $this->noticeService->getLists($where, $size); $mobile_dropload = false; if ($notices->total() > $size) { $mobile_dropload = true; } if ($request->ajax()) { if ($notices->lastPage() < $notices->currentPage()) { return response()->json(['status'=>0]); } return response()->json(['status'=>1,'data'=>view('mobile.app.content.notice.ajax_notice_list', ['notices'=>$notices])->render()]); } $return_data = array( 'notices' => $notices, 'mobile_dropload' => $mobile_dropload, 'wap_title' => '公告', ); return view('mobile.app.content.notice.index', $return_data); } public function show($id) { $return_data = array(); $where = array( 'id' => $id, 'is_display' => 1 ); $notice_info = $this->noticeService->getNotice($where); if (!$notice_info) { $back_url = \Illuminate\Support\Facades\URL::previous(); return $this->showMessage('公告不存在', $back_url, true, '上一页', '3'); } $this->putSeoData('notice', $notice_info); $return_data = array( 'notice' => $notice_info, 'wap_title' => $notice_info->title, ); return view('mobile.app.content.notice.show', $return_data); } public function click($id) { $rst = $this->noticeService->incrementData(array('id'=>$id), 1, 'click'); $data = array('status'=>0); if ($rst) { $data = array('status'=>1); } return response()->json($data); } }