后台admin/controller/index.php的内容

原创 2018-10-30 20:48:05 903
摘要:<?phpnamespace app\admin\controller;use think\Controller;class Index extends Controller{//首页    public function index()    {        return $this->fetch();

<?php
namespace app\admin\controller;

use think\Controller;

class Index extends Controller
{

//首页
   public function index()
   {
       return $this->fetch();

   }
//欢迎界面
   public function welcome()
   {
       return $this->fetch();
   }
}

发布手记

热门词条