Files
orico-official-website/app/index/controller/Article.php
2025-04-11 18:15:12 +08:00

27 lines
318 B
PHP

<?php
declare (strict_types = 1);
namespace app\index\controller;
use think\facade\View;
class Article extends Common
{
/**
* 文件列表
*/
public function index()
{
return View::fetch('index');
}
/**
* 文章详情
*/
public function detail()
{
}
}