控制器方法显示html,css 图片无法正常显示
<?php
namespace app\controller;
use app\ba
seController;
use think\facade\View;
class Index extends baseController
{
public function index()
{
return View::fetch('index');
//return "hello";
}
public function sysOverview()
{
return View::fetch('sysOverview');
}
}