企业站后台管理index页面

Original 2019-05-16 14:13:56 511
abstract:<?phpnamespace app\admin\controller;use think\Controller;use think\facade\Session;use app\admin\controller\Coomn;class Index extends Coomn{//渲染index页面    public function index()  &nb

<?php

namespace app\admin\controller;

use think\Controller;

use think\facade\Session;

use app\admin\controller\Coomn;


class Index extends Coomn

{

//渲染index页面

    public function index()

    {


    return $this->fetch();

   

    }

//渲染主页面

    public function welcome()

    {

        return $this->fetch();

    }

}


Correcting teacher:查无此人Correction time:2019-05-17 09:38:39
Teacher's summary:完成的不错。首页的html代码,怎么没上传?继续加油吧。

Release Notes

Popular Entries