This commit is contained in:
李志鹏
2025-11-20 16:40:13 +08:00
parent 8a34b8049e
commit b4242614ea
2 changed files with 6 additions and 1 deletions

View File

@@ -156,6 +156,11 @@ export const useGenerateStore = defineStore({
for (const key in data) {
this.customizeInfo[key] = data[key]
}
},
uploadCustomizeInfoDemo(data: object) {
for (const key in data) {
this.customizeInfoDemo[key] = data[key]
}
},
clearCustomerInfo() {
this.customerInfo = {

View File

@@ -51,7 +51,7 @@
<button class="sandblasted-blurred" @click="handleUploadFace">
<span>Upload Face</span>
</button>
<button class="sandblasted-blurred" @click="handleFinish"><span>Finish</span></button>
<button class="sandblasted-blurred" @click="handleFinish" v-if="!isDemo"><span>Finish</span></button>
</div>
</div>
<footer-navigation is-placeholder />