thinkphp-wechat/application/cms/home/Index.php

20 lines
303 B
PHP
Raw Permalink Normal View History

2021-12-24 16:40:05 +08:00
<?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(); // 渲染模板
}
}