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.
 
 
 
 
 
 

12 lines
298 B

  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. }