index控制器中的代码
<?php
namespace app\admin\controller;
use think\Controller;
class Index extends Controller
{
public function index()
{
return $this->fetch('index');
}
public function welcome(){
return $this->fetch();
}
}
2.运行效果图