admin模块/index/index方法

Original 2019-02-18 02:32:52 583
abstract:<?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();
    }

   
}


Correcting teacher:查无此人Correction time:2019-02-18 09:17:57
Teacher's summary:页面渲染出来,给点显示数据呀。继续加油。

Release Notes

Popular Entries