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