54 lines
1.7 KiB
PHP
54 lines
1.7 KiB
PHP
<?php
|
|
return [
|
|
// 各类网页
|
|
'' => 'KunWeb/index',
|
|
//首页
|
|
// 'index' => 'KunWeb/index',
|
|
// 坤班简介页
|
|
'intro' => 'KunWeb/intro',
|
|
|
|
// 活动页
|
|
'activity' => 'KunWeb/kunban_activity',
|
|
'activity/page/{currentPage}' => 'KunWeb/kunban_activity',
|
|
'activity/type/{type}' => 'KunWeb/kunban_activity',
|
|
'activity/type/{type}/page/{currentPage}' => 'KunWeb/kunban_activity',
|
|
// 核心成员页
|
|
'core_member' => 'KunWeb/core_member',
|
|
'core_member/{currentPage}' => 'KunWeb/core_member',
|
|
// 核心成员详情页
|
|
'core_member_detail' => 'KunWeb/core_member_detail',
|
|
'core_member_detail/{id}' => 'KunWeb/core_member_detail',
|
|
//产品服务页
|
|
'product' => 'KunWeb/product',
|
|
'product/page/{currentPage}' => 'KunWeb/product',
|
|
|
|
//产品详情页
|
|
'product_detail' => 'KunWeb/product_detail',
|
|
'product_detail/{id}' => 'KunWeb/product_detail',
|
|
|
|
// 在研项目页
|
|
'loading' => 'KunWeb/loading',
|
|
'loading/product/{currentPage}' => 'KunWeb/loading',
|
|
|
|
// 资源页
|
|
'resource' => 'KunWeb/resource',
|
|
'resource/{currentPage}' => 'KunWeb/resource',
|
|
|
|
// 加入我们
|
|
'join' => 'KunWeb/join',
|
|
|
|
// 外包服务
|
|
'pay' => 'KunWeb/pay',
|
|
// 详情页
|
|
'detail/{id}' => 'KunWeb/list_detail',
|
|
'detail/quest/{id}' => 'KunWeb/list_detail',//常见问题
|
|
'detail/insight/{id}' => 'KunWeb/list_detail',//行业观察
|
|
'detail/Sai/{id}' => 'KunWeb/list_detail',//赛事集锦
|
|
'detail/Slong/{id}' => 'KunWeb/list_detail',//沙龙
|
|
'detail/Welcome/{id}' => 'KunWeb/list_detail',//迎新
|
|
// 隐私政策
|
|
'private' => 'KunWeb/private',
|
|
// 免责声明
|
|
'declare' => 'KunWeb/declare',
|
|
];
|