18 lines
272 B
PHP
18 lines
272 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace app\index\controller;
|
||
|
|
|
||
|
|
use think\Controller;
|
||
|
|
|
||
|
|
class Index extends Controller
|
||
|
|
{
|
||
|
|
public function index()
|
||
|
|
{
|
||
|
|
return $this->view->fetch();
|
||
|
|
//return $this->redirect('admin/index/login');
|
||
|
|
//return $this->redirect('/index/user');
|
||
|
|
}
|
||
|
|
|
||
|
|
|
||
|
|
}
|