找不到ControllerClass 'think\Controller' not found in
namespace admins\controller;
use think\Controller;
use think\Request;
class Account extends Controller{
public function __construct() {
parent::__construct();
}
function login(){
return $this->fetch();
}
}