27 lines
318 B
PHP
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()
|
|
{
|
|
|
|
}
|
|
}
|