摘要:<?php namespace app\admin\controller; use think\Controller; class Index extends Controller { public function index() &n
<?php
namespace app\admin\controller;
use think\Controller;
class Index extends Controller
{
public function index()
{
//渲染模板
return $this->fetch();
}
public function welcome()
{
//渲染模板
return $this->fetch();
}
}
批改老师:查无此人批改时间:2019-02-18 09:17:57
老师总结:页面渲染出来,给点显示数据呀。继续加油。