From 34a82647fc2f649110a3b5b2c69bf8521a426a5a Mon Sep 17 00:00:00 2001 From: liguigong Date: Mon, 29 Sep 2025 10:59:04 +0800 Subject: [PATCH] =?UTF-8?q?fix(store):=20=E6=9B=B4=E6=96=B0=E8=AF=95?= =?UTF-8?q?=E8=A1=A3=E9=97=B4=E6=95=B0=E6=8D=AE=E5=90=8C=E6=AD=A5=E9=80=BB?= =?UTF-8?q?=E8=BE=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 将 isPerson 字段从布尔值 true 改为字符串 'yes' - 保持与其他数据字段的一致性- 确保数据序列化格式统一 --- sheep/store/fittingRoom.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sheep/store/fittingRoom.js b/sheep/store/fittingRoom.js index d420201..538cc62 100644 --- a/sheep/store/fittingRoom.js +++ b/sheep/store/fittingRoom.js @@ -136,7 +136,7 @@ const fittingRoom = defineStore({ isSync: 'yes', sex: this.sex, len: this.selectPattern, - isPerson: true, + isPerson: 'yes', // /cloth/uploadCloth h5端多传一个参数isPerson=yes ...data, }); },