作者 anyv
1 个管道 的构建 通过 耗费 0 秒

首页

... ... @@ -18,8 +18,8 @@ class IndexController extends HomeBaseController
public function _initialize(){
parent::_initialize();
$lunbo = Db::name('slide_item') -> where('slide_id',4) -> select();
$this -> assign('lunbo',$lunbo);
$data = Db::name('slide_item') -> where('slide_id',3) -> find();
$this -> assign('logo',$data);
}
... ... @@ -28,9 +28,9 @@ class IndexController extends HomeBaseController
public function index()
{
$data = Db::name('slide_item') -> where('slide_id',3) -> find();
$this -> assign('logo',$data);
$lunbo = Db::name('slide_item') -> where('slide_id',4) -> select();
$this -> assign('lunbo',$lunbo);
return $this->fetch(':index');
}
... ...