From 2fb60a989e3e17f832502fcda4d8d49fb18b84c7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=90=B4=E5=B1=95=E9=B9=8F?= Date: Wed, 19 Nov 2025 16:12:15 +0800 Subject: [PATCH] =?UTF-8?q?refactor:=20=E7=AE=80=E5=8C=96=E6=88=90?= =?UTF-8?q?=E5=8A=9F=E6=B6=88=E6=81=AF=E5=B9=B6=E8=B0=83=E6=95=B4=E9=A2=84?= =?UTF-8?q?=E7=BA=A6=E6=97=B6=E9=95=BF=E9=80=89=E9=A1=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 移除预约成功消息中的冗余信息,并调整时长选择按钮,增加6小时和8小时选项,移除3小时选项 --- index.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/index.php b/index.php index 2ecf469..859f745 100644 --- a/index.php +++ b/index.php @@ -103,7 +103,7 @@ if ($_SERVER['REQUEST_METHOD'] === 'POST') { $stmt->execute([$customer_name, $phone, $car_model, $car_number, $package_id, $custom_services, $start_time, $end_time, $duration, $total_price, $notes, $member_type, $source]); - $success_message = "预约提交成功!我们会尽快联系您确认。"; + $success_message = "预约提交成功!"; } catch (Exception $e) { $message = $e->getMessage(); @@ -512,8 +512,9 @@ $packages_json = json_encode(array_map(function($package) { - + +