cqpCow 1 年之前
父节点
当前提交
57e612f0b8
共有 1 个文件被更改,包括 7 次插入0 次删除
  1. 7 0
      routes/wx.php

+ 7 - 0
routes/wx.php

@@ -24,4 +24,11 @@ Route::group(['middleware'=> ['checkWx']],function ($route){
 
     //采购单
     $route->any('purchaseOrderList', 'Api\WxController@purchaseOrderList');
+
+    $route->any('employeeList', 'Api\EmployeeController@employeeList');
+    $route->any('departList', 'Api\EmployeeController@departList');
+    $route->any('storehouseList', 'Api\StorehouseController@storehouseList');
+    $route->any('basicTypeList', 'Api\BasicTypeController@basicTypeList');
+    $route->any('productList', 'Api\ProductController@productList');
+    $route->any('salesOrderList', 'Api\SalesOrderController@salesOrderList');
 });