|
@@ -44,6 +44,7 @@ Route::group(['middleware'=> ['checkLogin']],function ($route){
|
|
|
$route->any('teamEdit', 'Api\EmployeeController@teamEdit');
|
|
|
$route->any('teamDel', 'Api\EmployeeController@teamDel');
|
|
|
$route->any('teamList', 'Api\EmployeeController@teamList');
|
|
|
+ $route->any('teamDetail', 'Api\EmployeeController@teamDetail');
|
|
|
|
|
|
$route->any('employeeDepart', 'Api\EmployeeController@employeeDepart');
|
|
|
$route->any('employeeTeam', 'Api\EmployeeController@employeeTeam');
|
|
@@ -84,6 +85,12 @@ Route::group(['middleware'=> ['checkLogin']],function ($route){
|
|
|
$route->any('technologyDel', 'Api\TechnologyController@technologyDel');
|
|
|
$route->any('technologyCopy', 'Api\TechnologyController@technologyCopy');
|
|
|
|
|
|
+ //设备档案
|
|
|
+ $route->any('equipmentAdd', 'Api\EquipmentController@equipmentAdd');
|
|
|
+ $route->any('equipmentEdit', 'Api\EquipmentController@equipmentEdit');
|
|
|
+ $route->any('equipmentDel', 'Api\EquipmentController@equipmentDel');
|
|
|
+ $route->any('equipmentList', 'Api\EquipmentController@equipmentList');
|
|
|
+
|
|
|
$route->any('productList', 'Api\MaterialController@productList');
|
|
|
$route->any('productEdit', 'Api\MaterialController@edit');
|
|
|
$route->any('productAdd', 'Api\MaterialController@edd');
|