Apache2 // +---------------------------------------------------------------------- namespace app\index\controller; use app\HomeController; use support\Response; /** * 首页控制器 * * Class Index * @package app\index\controller */ class Partlist extends HomeController { /** * 鉴权控制器 */ public $needLogin = false; /** * 非鉴权方法 * @var array */ public $noNeedAuth = ['index', 'home']; // 初始化函数 public function __construct() { parent::__construct(); } /** * Partlist 首页 * @return Response * @throws InvalidArgumentException */ public function index(): Response { return response('Partlist 前台首页模板'); } }