From 094f9032c57ff72caec88f6062bd742d28239bec Mon Sep 17 00:00:00 2001 From: jeremygan2021 Date: Tue, 17 Feb 2026 11:34:57 +0800 Subject: [PATCH] =?UTF-8?q?=E5=B0=8F=E7=A8=8B=E5=BA=8F=E5=88=86=E9=94=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- backend/shop/views.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/backend/shop/views.py b/backend/shop/views.py index 28638d7..0e978d1 100644 --- a/backend/shop/views.py +++ b/backend/shop/views.py @@ -1483,7 +1483,9 @@ class DistributorViewSet(viewsets.GenericViewSet): data = { "scene": distributor.invite_code, "page": "pages/index/index", # 扫码落地页 - "width": 430 + "width": 430, + "check_path": False, # 开发阶段不检查页面路径是否存在(因为可能还未发布) + "env_version": "develop" # 开发版 } res = requests.post(url, json=data)