From 34880245a9eb5d1766bcfa63ed12e221891cfdad Mon Sep 17 00:00:00 2001 From: Jimmy Liow <18777396951@163.com> Date: Tue, 14 Feb 2023 11:42:18 +0800 Subject: [PATCH] =?UTF-8?q?=E5=88=A0=E9=99=A4=E4=B8=8D=E8=A6=81=E7=9A=84?= =?UTF-8?q?=E9=93=BE=E6=8E=A5=EF=BC=8C=E6=96=B0=E5=A2=9E=E4=B8=8D=E5=A4=8D?= =?UTF-8?q?=E5=88=B6=E5=8E=9F=E6=9D=A5=E7=9A=84=E5=86=85=E5=AE=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../third_party/order/views/gh/confirm_order.php | 11 +++++------ application/third_party/order/views/link_tips.php | 1 - 2 files changed, 5 insertions(+), 7 deletions(-) diff --git a/application/third_party/order/views/gh/confirm_order.php b/application/third_party/order/views/gh/confirm_order.php index bec9423b..d1d2274e 100644 --- a/application/third_party/order/views/gh/confirm_order.php +++ b/application/third_party/order/views/gh/confirm_order.php @@ -896,14 +896,13 @@ input.arrivalDate {height: 50px; width: 347px; font-size: 19px; padding: 5px 15p } $(function() { + var $travelerTemplate = $(".traveler_info:first").clone(); //添加客户 $("#add_traveler_button").click(function() { - var html = $(".traveler_info:first").clone(); - $('#add_traveler_button').before(html); - var travelerCount = $(".traveler_info").length; - var $currentBox = $(".traveler_info:last"); - $currentBox.find('[data-header]').text('Traveler ' + travelerCount); - $currentBox.find('.datepicker').removeClass('hasDatepicker').attr('id', ''); + var $addTraveler = $travelerTemplate.clone(); + var travelerCount = $(".traveler_info").length + 1; + $addTraveler.find('[data-header]').text('Traveler ' + travelerCount); + $('#add_traveler_button').before($addTraveler); $('.datepicker').datepicker({ controlType: 'select', diff --git a/application/third_party/order/views/link_tips.php b/application/third_party/order/views/link_tips.php index 01e775f9..300dff9f 100644 --- a/application/third_party/order/views/link_tips.php +++ b/application/third_party/order/views/link_tips.php @@ -62,7 +62,6 @@