Files
oms/back/application/monitor/controller/Monitor.php

17 lines
275 B
PHP
Raw Normal View History

2026-03-10 18:45:36 +08:00
<?php
namespace app\monitor\controller;
use think\Controller;
class Monitor extends Controller
{
public function index()
{
return $this->view->fetch();
//return $this->redirect('admin/index/login');
//return $this->redirect('/index/user');
}
}