From 6e494e5b86146a803895bca299295e02d5ec7728 Mon Sep 17 00:00:00 2001 From: mzeros Date: Mon, 23 Dec 2024 13:52:36 +0800 Subject: [PATCH] =?UTF-8?q?style(app):=20=E5=9C=A8=20Core=20=E6=8E=A7?= =?UTF-8?q?=E5=88=B6=E5=99=A8=E4=B8=AD=E5=A2=9E=E5=8A=A0=E4=BA=A7=E5=93=81?= =?UTF-8?q?=E5=8F=82=E6=95=B0=E5=A4=84=E7=90=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 在 Core.php 文件中添加了对 'product' 参数的处理逻辑 - 当 'product' 参数存在时,将其赋值给 $this->product 属性 --- app/gateway/controller/v4/Core.php | 1 + 1 file changed, 1 insertion(+) diff --git a/app/gateway/controller/v4/Core.php b/app/gateway/controller/v4/Core.php index 3c8d504..58bc6c3 100644 --- a/app/gateway/controller/v4/Core.php +++ b/app/gateway/controller/v4/Core.php @@ -136,6 +136,7 @@ class Core extends Controller $product = input('product'); if ($product) { $this->product = $product; + } }