mirror of
https://gitee.com/ulthon/ulthon_information.git
synced 2026-03-03 16:24:28 +08:00
优化性能和轮播图;
This commit is contained in:
@@ -18,22 +18,22 @@ class Common extends BaseController
|
||||
parent::initialize();
|
||||
|
||||
|
||||
$list_nav_slide = Nav::where('type', 3)->cache('type_list_3')->order('sort asc')->where('status', 1)->select();
|
||||
$list_nav_slide = Nav::where('type', 3)->cacheAlways('type_list_3')->order('sort asc')->where('status', 1)->select();
|
||||
|
||||
View::assign('list_nav_slide', $list_nav_slide);
|
||||
|
||||
$list_nav_friend_url = Nav::where('type', 2)->cache('type_list_2')->order('sort asc')->where('status', 1)->select();
|
||||
$list_nav_friend_url = Nav::where('type', 2)->cacheAlways('type_list_2')->order('sort asc')->where('status', 1)->select();
|
||||
View::assign('list_nav_friend_url', $list_nav_friend_url);
|
||||
|
||||
$list_header_nav = Nav::where('type', 11)->cache('type_list_11')->order('sort asc')->where('status', 1)->select();
|
||||
$list_header_nav = Nav::where('type', 11)->cacheAlways('type_list_11')->order('sort asc')->where('status', 1)->select();
|
||||
View::assign('list_header_nav', $list_header_nav);
|
||||
|
||||
$list_category_first_level = Category::where('level', 1)->where('status', 1)->where('type', 3)->cache('category_type_list_3')->order('sort asc')->select();
|
||||
$list_category_first_level = Category::where('level', 1)->where('status', 1)->where('type', 3)->cacheAlways('category_type_list_3')->order('sort asc')->select();
|
||||
View::assign('list_category_first_level', $list_category_first_level);
|
||||
$list_nav_more = Nav::where('type', 8)->cache('type_list_8')->order('sort asc')->where('status', 1)->select();
|
||||
$list_nav_more = Nav::where('type', 8)->cacheAlways('type_list_8')->order('sort asc')->where('status', 1)->select();
|
||||
View::assign('list_nav_more', $list_nav_more);
|
||||
|
||||
$top_posts = Post::where('is_top', 1)->limit(8)->where('type', 3)->cache('top_post')->select();
|
||||
$top_posts = Post::where('is_top', 1)->limit(8)->where('type', 3)->cacheAlways('top_post')->select();
|
||||
View::assign('top_posts', $top_posts);
|
||||
|
||||
$this->userHubLogin();
|
||||
|
||||
@@ -20,13 +20,11 @@ class Index extends Common
|
||||
public function index()
|
||||
{
|
||||
|
||||
|
||||
$page_cache_key = md5($this->request->url());
|
||||
|
||||
|
||||
$content = Cache::get($page_cache_key);
|
||||
|
||||
if (!empty($content)) {
|
||||
if (!env('app_debug') && !empty($content)) {
|
||||
return $content;
|
||||
}
|
||||
|
||||
@@ -34,13 +32,15 @@ class Index extends Common
|
||||
$sub_category = [];
|
||||
$current_category = [];
|
||||
|
||||
if (!empty($this->request->param('category_id'))) {
|
||||
$sub_category = Category::where('pid', $this->request->param('category_id'))->where('type', 3)->order('sort asc')->select();
|
||||
$current_category = Category::find($this->request->param('category_id'));
|
||||
if (empty($this->request->param('sub_category_id'))) {
|
||||
$categorys = [$this->request->param('category_id')];
|
||||
$category_id = $this->request->param('category_id');
|
||||
|
||||
$categorys = array_merge($categorys, array_column((array)Category::getListLevel($this->request->param('category_id')), 3));
|
||||
if (!empty($category_id)) {
|
||||
$sub_category = Category::where('pid', $category_id)->where('type', 3)->order('sort asc')->select();
|
||||
$current_category = Category::find($category_id);
|
||||
if (empty($this->request->param('sub_category_id'))) {
|
||||
$categorys = [$category_id];
|
||||
|
||||
$categorys = array_merge($categorys, array_column((array)Category::getListLevel($category_id), 3));
|
||||
|
||||
$categorys_where = PostCategory::whereIn('category_id', $categorys);
|
||||
|
||||
@@ -76,6 +76,8 @@ class Index extends Common
|
||||
$content = View::fetch();
|
||||
|
||||
Cache::tag('page_cache')->set($page_cache_key, $content);
|
||||
|
||||
return $content;
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user