作者 lyh

gx

... ... @@ -28,8 +28,6 @@ class MonthCountController extends BaseController
*/
public function lists(MonthCountLogic $monthCountLogic){
$lists = $monthCountLogic->getCountLists($this->map,$this->page,$this->row,$this->order);
var_dump($lists);
die();
$this->response('success',Code::SUCCESS,$lists);
}
... ...
... ... @@ -296,7 +296,7 @@ Route::middleware(['bloginauth'])->group(function () {
//访问数据
Route::prefix('month')->group(function () {
Route::any('/', [\App\Http\Controllers\Bside\HomeCount\MonthCountController::class, 'lists'])->name('month_lists');
Route::any('/', [\App\Http\Controllers\Bside\HomeCount\MonthCountController::class, 'getIpPvCount'])->name('month_getIpPvCount');
Route::any('/getIpPvCount', [\App\Http\Controllers\Bside\HomeCount\MonthCountController::class, 'getIpPvCount'])->name('month_getIpPvCount');
});
// 流量统计
... ...