新增获取患者已购买的某医生的服务包详情
This commit is contained in:
+10
-5
@@ -22,6 +22,7 @@ use App\Controller\InquiryController;
|
||||
use App\Controller\LoginController;
|
||||
use App\Controller\CodeController;
|
||||
use App\Controller\MessageNoticeController;
|
||||
use App\Controller\OrderServicePackageController;
|
||||
use App\Controller\PatientCaseController;
|
||||
use App\Controller\PatientDoctorController;
|
||||
use App\Controller\PatientFamilyController;
|
||||
@@ -578,6 +579,15 @@ Router::addGroup('/patient', function () {
|
||||
// 删除家庭成员病情记录
|
||||
Router::delete('/{pathography_id:\d+}', [PatientPathographyController::class, 'deleteFamilyPathography']);
|
||||
});
|
||||
|
||||
// 服务包
|
||||
Router::addGroup('/service', function () {
|
||||
// 获取患者已购买的某医生的服务包详情
|
||||
Router::get('/detail', [OrderServicePackageController::class, 'getPatientBuyServiceDetail']);
|
||||
|
||||
// 创建服务包订单
|
||||
Router::post('', [OrderServicePackageController::class, 'addPatientServiceOrder']);
|
||||
});
|
||||
});
|
||||
|
||||
// 药师端api
|
||||
@@ -933,7 +943,6 @@ Router::addGroup('/doctor', function () {
|
||||
Router::get('/inquiry/{doctor_id:\d+}', [UserDoctorController::class, 'getDoctorInfoInquiry']);
|
||||
});
|
||||
|
||||
|
||||
// 问诊
|
||||
Router::addGroup('/inquiry', function () {
|
||||
// 服务
|
||||
@@ -947,9 +956,5 @@ Router::addGroup('/doctor', function () {
|
||||
Router::get('/item/{doctor_id:\d+}', [DoctorInquiryConfigController::class, 'getDoctorInquiryFollowItemConfig']);
|
||||
});
|
||||
});
|
||||
|
||||
|
||||
});
|
||||
|
||||
|
||||
});
|
||||
Reference in New Issue
Block a user