开始官网模板

This commit is contained in:
augushong
2020-04-19 13:18:57 +08:00
parent 1ec8c07250
commit 9910dd3e6d
42 changed files with 1435 additions and 219 deletions

View File

@@ -54,9 +54,9 @@ class Nav extends Common
return $this->success('添加成功', url('index',[
'type'=>$request->param('type',1),
'show_img'=>$request->param('show_img'),
'show_target'=>$request->param('show_target'),
'show_xcx'=>$request->param('show_xcx'),
'show_img'=>$request->param('show_img',0),
'show_target'=>$request->param('show_target',0),
'show_xcx'=>$request->param('show_xcx',0),
]));
}
@@ -104,10 +104,10 @@ class Nav extends Common
$model_nav->save($post_data);
return $this->success('保存成功', url('index',[
'type'=>$model_nav->getData('type'),
'show_img'=>$request->param('show_img'),
'show_target'=>$request->param('show_target'),
'show_xcx'=>$request->param('show_xcx'),
'type'=>$model_nav->getData('type',1),
'show_img'=>$request->param('show_img',0),
'show_target'=>$request->param('show_target',0),
'show_xcx'=>$request->param('show_xcx',0),
]));
}

View File

@@ -23,7 +23,7 @@ class Post extends Common
{
//
$list = ModelPost::order('id desc')->paginate();
$list = ModelPost::with(['categorys.category','tags.tag'])->order('id desc')->paginate();
View::assign('list', $list);

View File

@@ -38,6 +38,11 @@ class System extends Common
return View::fetch();
}
public function easyBlue()
{
return View::fetch();
}
public function update()
{