视频页面加入用户指引 detail添加

This commit is contained in:
X1627315083
2025-11-20 13:56:25 +08:00
parent 2249bf614f
commit c078f9dd93
9 changed files with 32 additions and 8 deletions

View File

@@ -84,7 +84,7 @@
@click.stop="handleDownload(item)"
/>
<div class="text">
{{ $t('ProductImg.EditGarmen') }}:
{{ promptPage == 3 ? $t('ProductImg.EditGarmen2') : $t('ProductImg.EditGarmen') }}:
</div>
</div>
<div class="example-item"
@@ -285,10 +285,14 @@ const setNextOrPrevious = (type) => {
if(status.value == 0){
status.value = 1
}else{
const startIndex = (promptPage.value - 1) * 4;
if(startIndex + 4 >= promptList.value.length){
return
}
promptPage.value++
}
}
if(promptPage.value > 0)presentList.value = setPresentList()
if(promptPage.value > 0)presentList.value = setPresentList(4)
}
</script>