news(5); $this->companyHistory($blocks['company_history_list']['value']); $this->data['categoryId'] = $categoryId; $this->data['blocks'] = Block::convertValue($blocks); $this->data['category'] = $category; $this->data['topCategoryId'] = Category::firstGradeById($category['id']) ; $this->data['isIndex'] = true; $this->data['slide'] = Slide::getList(); $this->setSeo($this->system['seo_title'], $this->system['seo_keywords'], $this->system['seo_description']); return $this->view(); } // 新闻动态 private function news($num) { $this->data['newsList'] = MArticle::getIndexList(Category::CATEGORY_NEWS, $num); $topNews = MArticle::getIndexTop(Category::CATEGORY_NEWS); $this->data['topNews'] = $topNews; } private function companyHistory(string $companyHistory) { $companyHistory = nl2br($companyHistory); $companyHistory = explode('
', $companyHistory); $companyHistoryList = []; foreach ($companyHistory as $v) { $arr = explode(';', $v); $companyHistoryList[] = [ 'year' => $arr[0] ?? '', 'desc' => $arr[1] ?? '' ]; } $this->data['companyHistoryList'] = $companyHistoryList; } /** * 留言 * * @throws Exception */ public function message() { if ($this->request->isPost()) { $item = input('item/a', [], 'strip_tags'); $validate = $this->validateByApi($item, [ 'code|验证码' => 'require', 'name|姓名' => 'require', 'email|邮箱' => 'email', 'tel|联系方式' => 'require|mobile', 'content|留言内容' => 'require', ]); if ($validate !== true) { return $validate; } if (!captcha_check($item['code'])) { return $this->json(4001, '验证码错误'); } Message::create([ 'name' => $item['name'], 'tel' => $item['tel'], 'email' => $item['email'], 'content' => $item['content'], 'ip' => request()->ip(), 'create_time' => time(), ]); return $this->json(); } else { return $this->json('请求错误'); } } }