feat: 数据迁移命令
This commit is contained in:
26
app/index/controller/Article.php
Normal file
26
app/index/controller/Article.php
Normal file
@@ -0,0 +1,26 @@
|
||||
<?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()
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user