Reservoir.php
383 字节
<?php
namespace app\reservoir\controller;
use app\common\controller\Frontend;
use think\Lang;
/**
* Ajax异步请求接口
* @internal
*/
class Reservoir extends Frontend
{
protected $noNeedLogin = '*';
//水库统计
public function statistical(){
return $this->view->fetch();
}
public function map(){
return $this->view->fetch();
}
}