管理员登录后主界面渲染

原创 2019-05-09 20:48:49 454
摘要:管理员登录界面渲染,利用框架引入。<?php /**  * Created by PhpStorm.  * User: Administrator  * Date: 2019/5/9  * Time: 17:29  */ namespace 

管理员登录界面渲染,利用框架引入。

<?php
/**
 * Created by PhpStorm.
 * User: Administrator
 * Date: 2019/5/9
 * Time: 17:29
 */

namespace app\yejuzhi\controller;
//use app\yejuzhi\controller\Base;
use think\Controller;
use Util\SysDb;


class Home extends Base
{
    //渲染主界面
    public function index(){
        return $this->fetch();
    }
    //渲染欢迎界面
    public function welcome(){
        return $this->fetch();
    }

    
}


批改老师:查无此人批改时间:2019-05-10 14:22:31
老师总结:完成的不错,return $this->fetch(); 只是展示页面,要多写点逻辑。继续加油。

发布手记

热门词条