2025-03-24 09:40:45 +08:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace app\index\controller;
|
|
|
|
|
|
|
|
use app\common\controller\Frontend;
|
|
|
|
|
|
|
|
class Index extends Frontend
|
|
|
|
{
|
|
|
|
|
|
|
|
protected $noNeedLogin = '*';
|
|
|
|
protected $noNeedRight = '*';
|
|
|
|
protected $layout = '';
|
|
|
|
|
|
|
|
public function index()
|
|
|
|
{
|
2025-07-23 18:31:11 +08:00
|
|
|
|
|
|
|
// $this->redirect('/mobile_h5');
|
2025-03-24 09:40:45 +08:00
|
|
|
return $this->view->fetch();
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|