From fe86a1834fe3f9e3351b0fc4ff70e4b072ff99da Mon Sep 17 00:00:00 2001 From: wucongxing8150 <815046773@qq.com> Date: Thu, 29 Feb 2024 17:18:11 +0800 Subject: [PATCH] =?UTF-8?q?=E8=8E=B7=E5=8F=96=E9=97=AE=E8=AF=8A=E8=AE=A2?= =?UTF-8?q?=E5=8D=95=E6=B6=88=E6=81=AF=E5=86=85=E9=A1=B5=E5=9F=BA=E7=A1=80?= =?UTF-8?q?=E6=95=B0=E6=8D=AE=E9=97=AE=E8=AF=8A=E5=9B=9E=E5=90=88=E4=BF=AE?= =?UTF-8?q?=E6=94=B9124?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/Services/InquiryService.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/Services/InquiryService.php b/app/Services/InquiryService.php index 617ed24..e4d7a03 100644 --- a/app/Services/InquiryService.php +++ b/app/Services/InquiryService.php @@ -937,8 +937,8 @@ class InquiryService extends BaseService return fail(); } - $order_inquiry['times_number'] = $doctor_inquiry_config_service['service_period']; // 服务回合数 - $order_inquiry['duration'] = $doctor_inquiry_config_service['service_rounds'] * 24 * 60; // 服务周期 + $order_inquiry['times_number'] = $doctor_inquiry_config_service['service_rounds']; // 服务回合数 + $order_inquiry['duration'] = $doctor_inquiry_config_service['service_period'] * 24 * 60; // 服务周期 }else{ $params = array(); $params['inquiry_type'] = $order_inquiry['inquiry_type'];