From 1d34f4dd08b9e6de44aa8d9cfb2242f6e5b7ff0a Mon Sep 17 00:00:00 2001 From: linxi <957440651@qq.com> Date: Mon, 17 Nov 2025 11:10:34 +0800 Subject: [PATCH] =?UTF-8?q?Fix=EF=BC=9A4602=20=E3=80=90=E6=97=85=E5=B1=85?= =?UTF-8?q?=E5=95=86=E5=9F=8E=E5=B0=8F=E7=A8=8B=E5=BA=8F=E3=80=91=E6=8F=90?= =?UTF-8?q?=E4=BA=A4=E5=9B=A2=E8=B4=AD=E8=AE=A2=E5=8D=95=E9=A1=B5=E9=9D=A2?= =?UTF-8?q?=EF=BC=8C=E8=81=94=E7=B3=BB=E5=95=86=E5=AE=B6-=E7=82=B9?= =?UTF-8?q?=E5=87=BB=E7=AB=8B=E5=8D=B3=E6=8B=A8=E6=89=93=E6=8C=89=E9=92=AE?= =?UTF-8?q?=E6=97=A0=E6=95=88?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pkg_product/views/submitOrder.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg_product/views/submitOrder.vue b/pkg_product/views/submitOrder.vue index bc354ed..ec8de6c 100644 --- a/pkg_product/views/submitOrder.vue +++ b/pkg_product/views/submitOrder.vue @@ -210,9 +210,9 @@ export default { confirmText: '立即拨打', cancelText: '取消', success: (res) => { - if (res.confirm && this.detail.merPhone) { + if (res.confirm && this.orderInfo.merPhone) { uni.makePhoneCall({ - phoneNumber: this.detail.merPhone, + phoneNumber: this.orderInfo.merPhone, }) } }