fix: 配置店铺基础信息的传参数问题

This commit is contained in:
lzhizhao 2025-09-13 23:46:04 +08:00
parent c7343e485a
commit 5b0ee16f72
1 changed files with 2 additions and 2 deletions

View File

@ -593,8 +593,8 @@ export default {
...this.form, ...this.form,
merchantAccountId, merchantAccountId,
merchantId, merchantId,
imgs: this.form.fileList.map(f => f.url).join(','), imgs: this.form.fileList.map(f => f.response ? f.response.data : f.url).join(','),
permits: this.form.permits.map(f => f.url).join(','), permits: this.form.permits.map(f => f.response ? f.response.data : f.url).join(','),
startBusinessTime: startBusinessTime:
this.businessHours[0].getHours() * 60 + this.businessHours[0].getHours() * 60 +
this.businessHours[0].getMinutes(), this.businessHours[0].getMinutes(),