From 6ffb751aee9942b1866f430e1106f52dbd9c936e Mon Sep 17 00:00:00 2001 From: xiaofajia <1665375861@qq.com> Date: Wed, 6 Nov 2024 16:36:55 +0800 Subject: [PATCH] =?UTF-8?q?=E9=A2=84=E7=BA=A6=E6=88=90=E5=8A=9F=E5=90=8E?= =?UTF-8?q?=EF=BC=8C=E6=98=BE=E7=A4=BA=E6=9C=8D=E5=8A=A1=E9=A1=BE=E9=97=AE?= =?UTF-8?q?=E7=9A=84=E5=A7=93=E5=90=8D=E3=80=81=E7=94=B5=E8=AF=9D=EF=BC=8C?= =?UTF-8?q?=E7=82=B9=E5=87=BB=E5=8F=AF=E4=BB=A5=E7=9B=B4=E6=8E=A5=E6=89=93?= =?UTF-8?q?=E7=94=B5=E8=AF=9D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pages/myReservation/addReservation.vue | 2 ++ pages/myReservation/reservationSuccess.vue | 8 ++++++++ 2 files changed, 10 insertions(+) diff --git a/pages/myReservation/addReservation.vue b/pages/myReservation/addReservation.vue index b487206..e4ea0db 100644 --- a/pages/myReservation/addReservation.vue +++ b/pages/myReservation/addReservation.vue @@ -258,6 +258,8 @@ //设置选择的服务顾问 this.formData.adviserId = this.servicerList[this.servicerIndex].id this.formData.adviserName = this.servicerList[this.servicerIndex].nickname + this.info.adviserName = this.servicerList[this.servicerIndex].nickname + this.info.adviserMobile = this.servicerList[this.servicerIndex].mobile } if(""==this.chooseTime){ uni.showToast({ diff --git a/pages/myReservation/reservationSuccess.vue b/pages/myReservation/reservationSuccess.vue index da09c1e..93c3c64 100644 --- a/pages/myReservation/reservationSuccess.vue +++ b/pages/myReservation/reservationSuccess.vue @@ -26,6 +26,9 @@ {{info.serviceName || "维修"}} + + 服务顾问:{{info.adviserName}}  联系电话:{{info.adviserMobile}} + @@ -63,6 +66,11 @@ uni.redirectTo({ url: '/pages/myReservation/myReservation' }) + }, + callPhone(phone){ + uni.makePhoneCall({ + phoneNumber: phone //仅为示例 + }); } } }