Browse Source

Merge branch 'master' of http://git.qiniu1314.com/yingzi/infantServiceApi

yingzi 2 days ago
parent
commit
7395c66a44
1 changed files with 10 additions and 1 deletions
  1. 10 1
      app/api/route/education.php

+ 10 - 1
app/api/route/education.php

@@ -27,7 +27,16 @@ Route::group('Education', function () {
     //合约列表
     //合约列表
     Route::rule('getContractList', 'User/getContractList');
     Route::rule('getContractList', 'User/getContractList');
     Route::rule('getContractLists', 'Education/getContractList');
     Route::rule('getContractLists', 'Education/getContractList');
-
+    //甲方创建合约
+    Route::rule('form_save', 'User/form_save');
+    //甲方签约合约
+    Route::rule('check', 'User/check');
+    //乙方确认
+    Route::rule('to_check', 'User/to_check');
+    //员工签到
+    Route::rule('clock_in', 'User/clock_in');
+    //添加客户评论
+    Route::rule('comment', 'User/comment');
 })->middleware([
 })->middleware([
     AllowOriginMiddleware::class,
     AllowOriginMiddleware::class,
     SeretKeyMiddleware::class
     SeretKeyMiddleware::class