Files
sentcms/app/controller/Index.php
tensent 5c320206fb auth
2020-02-16 10:49:43 +08:00

62 lines
696 B
PHP
Executable File

<?php
namespace app\controller;
use app\BaseController;
class Index extends BaseController {
protected $middleware = ['\app\http\middleware\Front'];
public function weixin(){
}
/**
* @title 网站首页
*/
public function index() {
}
/**
* @title 搜索页
*/
public function search() {
}
/**
* @title 专题页
*/
public function topic() {
}
/**
* @title 模型数据列表
*/
public function lists() {
}
/**
* @title 栏目数据列表
*/
public function category() {
}
/**
* @title 模型数据详情
*/
public function detail() {
}
/**
* @title 未知页面调整到此方法
*/
public function miss() {
}
}