quickProductInputRef.current?.click()}
onKeyDown={(event) => { if (event.key === "Enter" || event.key === " ") quickProductInputRef.current?.click(); }}
onDragOver={(event) => { event.preventDefault(); setIsProductUploadDragging(true); }}
onDragLeave={(event) => { event.preventDefault(); setIsProductUploadDragging(false); }}
onDrop={handleProductDrop}
>
-
-
拖拽或点击上传商品图片
-
支持 JPG / PNG / WebP,建议清晰白底图
+
+
拖拽或点击上传
+
支持 JPG / PNG / WebP
+
+ 上传图片
{productImages.length > 0 ? (
-
+
{productImages.map((img) => (
-
+
-
))}
@@ -5401,8 +5393,7 @@ function ProductClonePage(_props: ProductClonePageProps = {}) {
onChange={handleProductUpload}
/>
-
-
+
-
-
- 电商平台
-
- {platformOptions.map((option) => (
-
- ))}
+
+ 基础设置
+
+
+
+
+
-
-
- 视频比例
-
- {cloneRatioOptions.map((option) => (
-
- ))}
-
-
-
-
+
视频质量
{cloneVideoQualityOptions.map((option) => (
@@ -5463,8 +5429,7 @@ function ProductClonePage(_props: ProductClonePageProps = {}) {
))}
-
-
-
-
+
(isAuthenticated ? undefined : requestLogin())}
@@ -5606,8 +5570,11 @@ function ProductClonePage(_props: ProductClonePageProps = {}) {
+ {status === "generating" ? (
+
+ ) : null}
@@ -5777,6 +5744,9 @@ function ProductClonePage(_props: ProductClonePageProps = {}) {
+ {detailStatus === "generating" ? (
+
+ ) : null}
@@ -5958,12 +5928,13 @@ function ProductClonePage(_props: ProductClonePageProps = {}) {
? imageWorkbenchPreview
: isSmartCutoutTool
? smartCutoutPreview
- : isQuickSetTool
- ? quickProductSetPreview
- : isQuickDetailTool
- ? quickDetailPreview
- : isHotVideoTool
- ? hotVideoPreview
+ : isQuickSetTool || isQuickDetailTool || isHotVideoTool
+ ? (
+
+ {quickPageSidebar}
+ {isQuickSetTool ? quickProductSetPreview : isQuickDetailTool ? quickDetailPreview : hotVideoPreview}
+
+ )
: cloneOutput === "video-outfit" && results.length > 0 && results[0].type === "video"
? (
@@ -6032,6 +6003,14 @@ function ProductClonePage(_props: ProductClonePageProps = {}) {
/>
) : activePreview}
+
+ {quickPageTransition ? (
+
+
+ {quickPageTransition.title}
+ {quickPageTransition.subtitle}
+
+ ) : null}