17 lines
187 B
PHP
Executable File
17 lines
187 B
PHP
Executable File
<?php
|
|
namespace app\user\controller;
|
|
|
|
use think\facade\View;
|
|
|
|
/**
|
|
* 首页
|
|
*/
|
|
class Index extends Controller
|
|
{
|
|
|
|
public function index()
|
|
{
|
|
return View::fetch();
|
|
}
|
|
}
|