fix(store): 更新试衣间数据同步逻辑

- 将 isPerson 字段从布尔值 true 改为字符串 'yes'
- 保持与其他数据字段的一致性- 确保数据序列化格式统一
This commit is contained in:
liguigong
2025-09-29 10:59:04 +08:00
parent f8a4cbfb51
commit 34a82647fc
+1 -1
View File
@@ -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,
});
},