|
<?php
|
|
use think\facade\Route;
|
|
|
|
// 首页
|
|
Route::get('/', 'Index/index');
|
|
|
|
// 区块列表
|
|
Route::get('/blocks', 'Index/blocks');
|
|
|
|
// 区块详情(?n=区块号)
|
|
Route::get('/block', 'Index/block');
|
|
|
|
// 搜索
|
|
Route::get('/search', 'Index/search');
|
|
|
|
// 节点状态
|
|
Route::get('/nodes', 'Index/nodes');
|