From eb696e4409b7acc04ffdc370421b12c86082a861 Mon Sep 17 00:00:00 2001 From: zhouxueli <2841188632@qq.com> Date: Wed, 22 Jul 2026 13:47:58 +0800 Subject: [PATCH] =?UTF-8?q?CRM=5F26-07-21#story#9039,=E6=9C=8D=E5=8A=A1?= =?UTF-8?q?=E5=95=86=E5=9C=A8=E8=B0=83=E5=BA=A6=E7=AB=AFApp=E4=B8=8E?= =?UTF-8?q?=E7=B3=BB=E7=BB=9F=E4=B8=AD=E8=83=BD=E5=8F=98=E6=9B=B4=E5=9F=BA?= =?UTF-8?q?=E7=A1=80=E4=BF=A1=E6=81=AF=E5=8F=8A=E5=AF=B9=E5=BA=94=E5=8C=BA?= =?UTF-8?q?=E5=9F=9F=E7=BB=8F=E7=90=86=E5=AE=A1=E6=A0=B8=E5=8A=9F=E8=83=BD?= =?UTF-8?q?=E5=A2=9E=E5=8A=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/index/supplierTimePhone.vue | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/views/index/supplierTimePhone.vue b/src/views/index/supplierTimePhone.vue index 8e4b1b42..4bc278fc 100644 --- a/src/views/index/supplierTimePhone.vue +++ b/src/views/index/supplierTimePhone.vue @@ -100,7 +100,8 @@ export default { } }, mounted() { - this.supplierId = this.$route.query.supplierId || getSupplierIdFromToken() + const urlParams = new URLSearchParams(window.location.search); + this.supplierId = urlParams.get('supplierId') || this.$route.query.supplierId || getSupplierIdFromToken() if (!this.supplierId) { Toast('未获取到服务商信息') return