2021-11-21 13:05:36 +08:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* @copyright Copyright (c) 2021 勾股工作室
|
|
|
|
* @license https://opensource.org/licenses/GPL-2.0
|
|
|
|
* @link https://www.gougucms.com
|
|
|
|
*/
|
|
|
|
|
|
|
|
declare (strict_types = 1);
|
|
|
|
|
|
|
|
namespace app\home\controller;
|
|
|
|
|
2021-12-14 00:35:34 +08:00
|
|
|
use app\base\BaseController;
|
2021-11-21 13:05:36 +08:00
|
|
|
use think\facade\Db;
|
|
|
|
use think\facade\View;
|
|
|
|
|
|
|
|
class Analysis extends BaseController
|
|
|
|
{
|
|
|
|
public function index()
|
|
|
|
{
|
|
|
|
return View();
|
|
|
|
}
|
|
|
|
|
|
|
|
public function errorShow()
|
|
|
|
{
|
|
|
|
echo '错误';
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|