You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

IndexController.class.php 298 B

3 years ago
123456789101112
  1. <?php
  2. namespace Admin\Controller;
  3. use Think\Controller;
  4. class IndexController extends Controller {
  5. public function _empty($name){
  6. //把所有城市的操作解析到city方法
  7. $this->display('Monitor/error404');
  8. }
  9. public function index(){
  10. $this->redirect("Monitor/monitorList");
  11. }
  12. }