|
|
@@ -111,4 +111,18 @@ Route::group(['middleware'=> ['checkWx']],function ($route){
|
|
|
$route->any('toDoFinished', 'Api\OrderController@toDoFinished');
|
|
|
|
|
|
$route->any('valueStatistics', 'Api\StatisticsController@valueStatistics');
|
|
|
+
|
|
|
+ //费用
|
|
|
+ $route->any('costManagementList', 'Api\CostManagementController@costManagementList');
|
|
|
+ $route->any('costManagementEdit', 'Api\CostManagementController@costManagementEdit');
|
|
|
+ $route->any('costManagementAdd', 'Api\CostManagementController@costManagementAdd');
|
|
|
+ $route->any('costManagementDel', 'Api\CostManagementController@costManagementDel');
|
|
|
+ $route->any('costManagementDetail', 'Api\CostManagementController@costManagementDetail');
|
|
|
+
|
|
|
+ //用户指引
|
|
|
+ $route->any('userGuideList', 'Api\UserGuideController@userGuideList');
|
|
|
+ $route->any('userGuideEdit', 'Api\UserGuideController@userGuideEdit')->middleware('OssFileDeal');
|
|
|
+ $route->any('userGuideAdd', 'Api\UserGuideController@userGuideAdd')->middleware('OssFileDeal');
|
|
|
+ $route->any('userGuideDel', 'Api\UserGuideController@userGuideDel')->middleware('OssFileDeal');
|
|
|
+ $route->any('userGuideDetail', 'Api\UserGuideController@userGuideDetail');
|
|
|
});
|