cqpCow 1 vuosi sitten
vanhempi
commit
52d0682d85
1 muutettua tiedostoa jossa 8 lisäystä ja 0 poistoa
  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');
 });