feat: nas首页

This commit is contained in:
2025-04-28 16:01:31 +08:00
parent b469aca387
commit b5e11239d7
11 changed files with 1020 additions and 0 deletions

View File

@@ -83,5 +83,23 @@ Route::group('contactus', function() {
// 提交留言批量购买
Route::post('bulkbuy', 'ContactUs/bulkbuy');
});
// 专题
Route::group('topic', function() {
// 专题-Nas
Route::group('nas', function() {
// 专题-Nas首页
Route::get('index', 'TopicNas/index');
// 专题-Nas产品体验页
Route::get('product', 'TopicNas/product');
// 专题-Nas客户合作页
Route::get('cooperation', 'TopicNas/cooperation');
// 专题-Nas帮助中心页
Route::get('help', 'TopicNas/help');
// 专题-Nas软件下载页
Route::get('download', 'TopicNas/download');
});
});
// 数据迁移
Route::get('/data/migration', 'DataMigration/index');