cqpCow 1 년 전
부모
커밋
52d0682d85
1개의 변경된 파일8개의 추가작업 그리고 0개의 파일을 삭제
  1. 8 0
      routes/wx.php

+ 8 - 0
routes/wx.php

@@ -97,4 +97,12 @@ Route::group(['middleware'=> ['checkWx']],function ($route){
 
     $route->any('getSettingTotal', 'Api\ScheduleController@getSettingTotal');
     $route->any('getSettingGetDetail', 'Api\ScheduleController@getSettingGetDetail');
+
+    //客户
+    $route->any('customerList', 'Api\CustomerController@customerList');
+    $route->any('customerEdit', 'Api\CustomerController@customerEdit');
+    $route->any('customerAdd', 'Api\CustomerController@customerAdd');
+    $route->any('customerDel', 'Api\CustomerController@customerDel');
+    $route->any('customerDetail', 'Api\CustomerController@customerDetail');
+    $route->any('customerGrabbing', 'Api\CustomerController@customerGrabbing');
 });