debug-video-index

This commit is contained in:
make
2025-05-25 20:31:37 +08:00
parent 2d26f9bccf
commit 50d7df3869
17 changed files with 127 additions and 13 deletions

View File

@@ -700,6 +700,17 @@ foreach ($arrRoutes['prefixes'] as $platform => $prefixes) {
return view($strView);
});
break;
case 'vindex':
// 首页
$strView = 'pc/index.html';
if ($platform == 'h5') {
$strView = 'index/index.html';
}
Route::get($strRoute, function () use ($strView) {
return view($strView);
});
break;
}
}
}