This commit is contained in:
李志鹏
2025-10-24 13:19:01 +08:00
parent 9fff109c77
commit abb5dc3ce4
5 changed files with 21 additions and 77 deletions

View File

@@ -19,7 +19,7 @@
// 跳过上传
const handleFinish = () => {
generateStore.updatePhotoInfo({})
generateStore.clearCustomizeInfo({})
generateStore.clearCustomizeInfo()
router.push({ name: 'customize' })
}
</script>

View File

@@ -44,7 +44,7 @@
formData.append('file', fileData.file)
uploadCustomerPhoto(formData).then((res) => {
generateStore.updatePhotoInfo(res)
generateStore.clearCustomizeInfo({})
generateStore.clearCustomizeInfo()
router.push({ name: 'customize' })
})
}