<?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();
}
}