|
@ -58,7 +58,7 @@ Route::group(['prefix' => 'weixin', 'namespace' => 'Weixin'], function () { |
|
|
Route::get('/category', 'IndexController@category')->name('weixin_category'); |
|
|
Route::get('/category', 'IndexController@category')->name('weixin_category'); |
|
|
Route::get('/category_goods_list', 'GoodsController@categoryGoodsList')->name('weixin_category_goods_list'); //产品分类页
|
|
|
Route::get('/category_goods_list', 'GoodsController@categoryGoodsList')->name('weixin_category_goods_list'); //产品分类页
|
|
|
Route::get('/page404', 'IndexController@page404')->name('weixin_page404'); //404页面
|
|
|
Route::get('/page404', 'IndexController@page404')->name('weixin_page404'); //404页面
|
|
|
Route::get('/search', 'IndexController@search')->name('weixin_search'); //搜索页面
|
|
|
|
|
|
|
|
|
Route::get('/search', 'IndexController@search')->name('weixin_search'); //搜索页面
|
|
|
Route::get('/p/{id}', 'ArticleController@detail')->name('weixin_article_detail'); //文章详情页
|
|
|
Route::get('/p/{id}', 'ArticleController@detail')->name('weixin_article_detail'); //文章详情页
|
|
|
Route::get('/cat{cat}', 'ArticleController@category')->name('weixin_article_category'); //分类页
|
|
|
Route::get('/cat{cat}', 'ArticleController@category')->name('weixin_article_category'); //分类页
|
|
|
Route::get('/tag{tag}', 'IndexController@tag')->name('weixin_tag'); //标签页
|
|
|
Route::get('/tag{tag}', 'IndexController@tag')->name('weixin_tag'); //标签页
|
|
@ -68,7 +68,7 @@ Route::group(['prefix' => 'weixin', 'namespace' => 'Weixin'], function () { |
|
|
|
|
|
|
|
|
Route::get('/bonus_list', 'BonusController@bonusList')->name('weixin_bonus_list'); |
|
|
Route::get('/bonus_list', 'BonusController@bonusList')->name('weixin_bonus_list'); |
|
|
Route::any('/wxpay_notify', 'WxPayController@wxpayNotify')->name('weixin_wxpay_notify'); //微信回调
|
|
|
Route::any('/wxpay_notify', 'WxPayController@wxpayNotify')->name('weixin_wxpay_notify'); //微信回调
|
|
|
Route::any('/wxoauth', 'UserController@oauth')->name('weixin_wxoauth'); //微信网页授权
|
|
|
|
|
|
|
|
|
Route::any('/wxoauth', 'UserController@oauth')->name('weixin_wxoauth'); //微信网页授权
|
|
|
Route::any('/login', 'UserController@login')->name('weixin_login'); |
|
|
Route::any('/login', 'UserController@login')->name('weixin_login'); |
|
|
Route::any('/register', 'UserController@register')->name('weixin_register'); |
|
|
Route::any('/register', 'UserController@register')->name('weixin_register'); |
|
|
Route::get('/logout', 'UserController@logout')->name('weixin_user_logout'); //退出
|
|
|
Route::get('/logout', 'UserController@logout')->name('weixin_user_logout'); //退出
|
|
|