2021-01-30 20:59:12 +08:00
|
|
|
<?php
|
|
|
|
declare (strict_types = 1);
|
|
|
|
|
|
|
|
namespace app\home\controller;
|
|
|
|
|
|
|
|
use app\home\BaseController;
|
|
|
|
use think\facade\Db;
|
|
|
|
use think\facade\View;
|
|
|
|
|
|
|
|
class Index extends BaseController
|
|
|
|
{
|
|
|
|
public function index()
|
2021-06-15 20:01:07 +08:00
|
|
|
{
|
|
|
|
add_user_log('view','首页');
|
2021-01-30 20:59:12 +08:00
|
|
|
return View();
|
|
|
|
}
|
|
|
|
|
|
|
|
public function main()
|
|
|
|
{
|
|
|
|
return View();
|
|
|
|
}
|
|
|
|
}
|