fix(store): 更新试衣间数据同步逻辑
- 将 isPerson 字段从布尔值 true 改为字符串 'yes' - 保持与其他数据字段的一致性- 确保数据序列化格式统一
This commit is contained in:
@@ -136,7 +136,7 @@ const fittingRoom = defineStore({
|
|||||||
isSync: 'yes',
|
isSync: 'yes',
|
||||||
sex: this.sex,
|
sex: this.sex,
|
||||||
len: this.selectPattern,
|
len: this.selectPattern,
|
||||||
isPerson: true,
|
isPerson: 'yes', // /cloth/uploadCloth h5端多传一个参数isPerson=yes
|
||||||
...data,
|
...data,
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
|||||||
Reference in New Issue
Block a user