You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
303 B
PHP

<?php
namespace app\cms\home;
/**
* 前台首页控制器
* @package app\cms\admin
*/
class Index extends Common
{
/**
* 首页
* @author 蔡伟明 <314013107@qq.com>
* @return mixed
*/
public function index()
{
return $this->fetch(); // 渲染模板
}
}