...
|
...
|
@@ -10,11 +10,15 @@ namespace app\portal\controller; |
|
|
|
|
|
use cmf\controller\HomeBaseController;
|
|
|
use EasyWeChat\Foundation\Application;
|
|
|
use think\Db;
|
|
|
|
|
|
class IndexController extends HomeBaseController
|
|
|
{
|
|
|
public function index()
|
|
|
{
|
|
|
|
|
|
$data = Db::name('slide_item') -> where('slide_id',3) -> find();
|
|
|
$this -> assign('logo',$data);
|
|
|
return $this->fetch(':index');
|
|
|
}
|
|
|
} |
...
|
...
|
|