整理缓存

This commit is contained in:
zhonghua 2026-04-15 18:34:57 +08:00
parent 1542d0bd71
commit 9ed641c6e3
4 changed files with 186 additions and 75 deletions

View File

@ -11,28 +11,33 @@ export const STATUS = {
PROCESSING: 2, PROCESSING: 2,
COMPLETED: 3, COMPLETED: 3,
CATALOGED: 4, CATALOGED: 4,
DUBBED: 5 DUBBED: 5,
} as const } as const;
export type StatusValue = typeof STATUS[keyof typeof STATUS] export type StatusValue = (typeof STATUS)[keyof typeof STATUS];
/** /**
* *
*/ */
export function getRouteByStatus(status: StatusValue, workId: string): { name: string; params?: Record<string, string> } | null { export function getRouteByStatus(
status: StatusValue,
workId: string,
): { name: string; params?: Record<string, string> } | null {
switch (status) { switch (status) {
case STATUS.PENDING: case STATUS.PENDING:
case STATUS.PROCESSING: case STATUS.PROCESSING:
return { name: 'PublicCreateCreating' } return { name: "PublicCreateCreating" };
case STATUS.COMPLETED: case STATUS.COMPLETED:
return { name: 'PublicCreatePreview', params: { workId } } return { name: "PublicCreatePreview", params: { workId } };
case STATUS.CATALOGED: case STATUS.CATALOGED:
return { name: 'PublicCreateDubbing', params: { workId } } return { name: "PublicCreatePreview", params: { workId } };
// return { name: 'PublicCreateDubbing', params: { workId } }
case STATUS.DUBBED: case STATUS.DUBBED:
return { name: 'PublicCreateEditInfo', params: { workId } } return { name: "PublicCreatePreview", params: { workId } };
// return { name: 'PublicCreateEditInfo', params: { workId } }
case STATUS.FAILED: case STATUS.FAILED:
return null return null;
default: default:
return null return null;
} }
} }

View File

@ -13,11 +13,8 @@ export default { name: 'BookReaderView' }
<!-- 书本区域 --> <!-- 书本区域 -->
<div class="book-area page-content"> <div class="book-area page-content">
<div <div class="book" :class="{ 'flip-left': flipDir === -1, 'flip-right': flipDir === 1 }"
class="book" :style="{ background: pageBg }">
:class="{ 'flip-left': flipDir === -1, 'flip-right': flipDir === 1 }"
:style="{ background: pageBg }"
>
<div class="book-spine" /> <div class="book-spine" />
<!-- 封面 --> <!-- 封面 -->
@ -181,9 +178,9 @@ const goHome = () => {
function applyWork(work: any) { function applyWork(work: any) {
title.value = work.title || '我的绘本' title.value = work.title || '我的绘本'
const list: any[] = [{ pageNum: 0, text: work.title || '我的绘本', type: 'cover' }] const list: any[] = [{ pageNum: 0, text: work.title || '我的绘本', type: 'cover' }]
;(work.pageList || []).forEach((p: any) => { ; (work.pageList || []).forEach((p: any) => {
if (p.pageNum > 0) list.push({ pageNum: p.pageNum, text: p.text, imageUrl: p.imageUrl }) if (p.pageNum > 0) list.push({ pageNum: p.pageNum, text: p.text, imageUrl: p.imageUrl })
}) })
if (work.pageList?.[0]?.imageUrl) coverImageUrl.value = work.pageList[0].imageUrl if (work.pageList?.[0]?.imageUrl) coverImageUrl.value = work.pageList[0].imageUrl
if (work.author) authorDisplay.value = work.author if (work.author) authorDisplay.value = work.author
if (Array.isArray(work.tags) && work.tags.length > 0) workTags.value = work.tags if (Array.isArray(work.tags) && work.tags.length > 0) workTags.value = work.tags
@ -235,6 +232,7 @@ onActivated(loadReader)
border-bottom: 1px solid rgba(99, 102, 241, 0.08); border-bottom: 1px solid rgba(99, 102, 241, 0.08);
position: relative; position: relative;
} }
.back-btn { .back-btn {
position: absolute; position: absolute;
left: 12px; left: 12px;
@ -248,8 +246,11 @@ onActivated(loadReader)
justify-content: center; justify-content: center;
color: var(--ai-primary); color: var(--ai-primary);
:deep(.anticon) { font-size: 16px; } :deep(.anticon) {
font-size: 16px;
}
} }
.top-title { .top-title {
font-size: 15px; font-size: 15px;
font-weight: 700; font-weight: 700;
@ -281,8 +282,13 @@ onActivated(loadReader)
0 14px 36px rgba(99, 102, 241, 0.2); 0 14px 36px rgba(99, 102, 241, 0.2);
transition: transform 0.25s ease; transition: transform 0.25s ease;
&.flip-left { transform: perspective(800px) rotateY(8deg); } &.flip-left {
&.flip-right { transform: perspective(800px) rotateY(-8deg); } transform: perspective(800px) rotateY(8deg);
}
&.flip-right {
transform: perspective(800px) rotateY(-8deg);
}
} }
.book-spine { .book-spine {
@ -307,6 +313,7 @@ onActivated(loadReader)
text-align: center; text-align: center;
position: relative; position: relative;
} }
.cover-image { .cover-image {
width: 100%; width: 100%;
aspect-ratio: 16 / 9; aspect-ratio: 16 / 9;
@ -320,15 +327,18 @@ onActivated(loadReader)
backdrop-filter: blur(8px); backdrop-filter: blur(8px);
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18); box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
} }
.cover-real-img { .cover-real-img {
width: 100%; width: 100%;
height: 100%; height: 100%;
object-fit: cover; object-fit: cover;
} }
.cover-placeholder { .cover-placeholder {
font-size: 56px; font-size: 56px;
color: rgba(255, 255, 255, 0.5); color: rgba(255, 255, 255, 0.5);
} }
.cover-title { .cover-title {
font-size: 22px; font-size: 22px;
font-weight: 900; font-weight: 900;
@ -337,6 +347,7 @@ onActivated(loadReader)
line-height: 1.3; line-height: 1.3;
letter-spacing: 1.5px; letter-spacing: 1.5px;
} }
.cover-divider { .cover-divider {
width: 50px; width: 50px;
height: 2px; height: 2px;
@ -344,12 +355,14 @@ onActivated(loadReader)
border-radius: 2px; border-radius: 2px;
margin: 14px 0 12px; margin: 14px 0 12px;
} }
.cover-brand { .cover-brand {
font-size: 12px; font-size: 12px;
color: rgba(255, 255, 255, 0.88); color: rgba(255, 255, 255, 0.88);
font-weight: 500; font-weight: 500;
letter-spacing: 0.5px; letter-spacing: 0.5px;
} }
.cover-author { .cover-author {
margin-top: 12px; margin-top: 12px;
display: inline-flex; display: inline-flex;
@ -363,7 +376,9 @@ onActivated(loadReader)
padding: 4px 12px; padding: 4px 12px;
backdrop-filter: blur(4px); backdrop-filter: blur(4px);
:deep(.anticon) { font-size: 11px; } :deep(.anticon) {
font-size: 11px;
}
} }
/* ---------- 正文页 ---------- */ /* ---------- 正文页 ---------- */
@ -373,6 +388,7 @@ onActivated(loadReader)
display: flex; display: flex;
flex-direction: column; flex-direction: column;
} }
.content-image { .content-image {
flex: 1; flex: 1;
display: flex; display: flex;
@ -382,16 +398,19 @@ onActivated(loadReader)
position: relative; position: relative;
background: #1e1b4b; background: #1e1b4b;
} }
.content-real-img { .content-real-img {
width: 100%; width: 100%;
height: 100%; height: 100%;
object-fit: contain; object-fit: contain;
border-radius: 10px; border-radius: 10px;
} }
.content-placeholder { .content-placeholder {
font-size: 48px; font-size: 48px;
color: rgba(255, 255, 255, 0.3); color: rgba(255, 255, 255, 0.3);
} }
.page-num { .page-num {
position: absolute; position: absolute;
top: 14px; top: 14px;
@ -405,6 +424,7 @@ onActivated(loadReader)
color: #fff; color: #fff;
letter-spacing: 0.5px; letter-spacing: 0.5px;
} }
.content-text { .content-text {
padding: 14px 22px 18px; padding: 14px 22px 18px;
text-align: center; text-align: center;
@ -428,12 +448,14 @@ onActivated(loadReader)
padding: 32px 28px; padding: 32px 28px;
text-align: center; text-align: center;
} }
.back-icon { .back-icon {
font-size: 44px; font-size: 44px;
color: #fff; color: #fff;
margin-bottom: 16px; margin-bottom: 16px;
filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.18)); filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.18));
} }
.back-title { .back-title {
font-size: 20px; font-size: 20px;
font-weight: 900; font-weight: 900;
@ -441,6 +463,7 @@ onActivated(loadReader)
text-shadow: 0 2px 8px rgba(0, 0, 0, 0.18); text-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
letter-spacing: 1px; letter-spacing: 1px;
} }
.back-divider { .back-divider {
width: 36px; width: 36px;
height: 2px; height: 2px;
@ -448,6 +471,7 @@ onActivated(loadReader)
border-radius: 2px; border-radius: 2px;
margin: 12px 0; margin: 12px 0;
} }
.back-desc { .back-desc {
font-size: 13px; font-size: 13px;
color: rgba(255, 255, 255, 0.92); color: rgba(255, 255, 255, 0.92);
@ -463,6 +487,7 @@ onActivated(loadReader)
margin-top: 14px; margin-top: 14px;
padding: 0 16px; padding: 0 16px;
} }
.book-tag { .book-tag {
display: inline-block; display: inline-block;
padding: 4px 12px; padding: 4px 12px;
@ -490,9 +515,13 @@ onActivated(loadReader)
box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18); box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
transition: transform 0.2s; transition: transform 0.2s;
:deep(.anticon) { font-size: 13px; } :deep(.anticon) {
font-size: 13px;
}
&:active { transform: scale(0.96); } &:active {
transform: scale(0.96);
}
} }
.back-brand { .back-brand {
@ -513,6 +542,7 @@ onActivated(loadReader)
margin-top: 16px; margin-top: 16px;
padding: 0 4px; padding: 0 4px;
} }
.nav-btn { .nav-btn {
width: 40px; width: 40px;
height: 40px; height: 40px;
@ -523,7 +553,9 @@ onActivated(loadReader)
cursor: pointer; cursor: pointer;
transition: all 0.2s; transition: all 0.2s;
:deep(.anticon) { font-size: 16px; } :deep(.anticon) {
font-size: 16px;
}
&.prev { &.prev {
background: #fff; background: #fff;
@ -531,20 +563,27 @@ onActivated(loadReader)
border: 1px solid rgba(99, 102, 241, 0.2); border: 1px solid rgba(99, 102, 241, 0.2);
box-shadow: 0 2px 10px rgba(99, 102, 241, 0.08); box-shadow: 0 2px 10px rgba(99, 102, 241, 0.08);
&:hover { border-color: var(--ai-primary); } &:hover {
border-color: var(--ai-primary);
}
} }
&.next { &.next {
background: var(--ai-gradient); background: var(--ai-gradient);
color: #fff; color: #fff;
box-shadow: 0 4px 14px rgba(99, 102, 241, 0.32); box-shadow: 0 4px 14px rgba(99, 102, 241, 0.32);
&:hover { transform: scale(1.05); } &:hover {
transform: scale(1.05);
}
} }
&.disabled { &.disabled {
opacity: 0; opacity: 0;
pointer-events: none; pointer-events: none;
} }
} }
.nav-label { .nav-label {
font-size: 12px; font-size: 12px;
color: var(--ai-text-sub); color: var(--ai-text-sub);
@ -562,6 +601,7 @@ onActivated(loadReader)
margin-top: 12px; margin-top: 12px;
overflow: hidden; overflow: hidden;
} }
.progress-bar-fill { .progress-bar-fill {
height: 100%; height: 100%;
background: var(--ai-gradient); background: var(--ai-gradient);
@ -577,6 +617,7 @@ onActivated(loadReader)
background: #fff; background: #fff;
border-top: 1px solid rgba(99, 102, 241, 0.08); border-top: 1px solid rgba(99, 102, 241, 0.08);
} }
.again-btn { .again-btn {
display: flex !important; display: flex !important;
align-items: center; align-items: center;
@ -587,8 +628,11 @@ onActivated(loadReader)
padding: 14px 0 !important; padding: 14px 0 !important;
border-radius: 28px !important; border-radius: 28px !important;
:deep(.anticon) { font-size: 16px; } :deep(.anticon) {
font-size: 16px;
}
} }
.bottom-hint { .bottom-hint {
margin-top: 8px; margin-top: 8px;
font-size: 12px; font-size: 12px;

View File

@ -52,34 +52,19 @@ export default { name: 'DubbingView' }
<!-- 配音按钮 --> <!-- 配音按钮 -->
<div class="voice-actions"> <div class="voice-actions">
<button <button class="record-btn" :class="{ recording: isRecording }" :disabled="voicingSingle || voicingAll"
class="record-btn" @mousedown.prevent="startRecording" @mouseup.prevent="stopRecording"
:class="{ recording: isRecording }" @mouseleave="isRecording && stopRecording()" @touchstart.prevent="startRecording"
:disabled="voicingSingle || voicingAll" @touchend.prevent="stopRecording" @touchcancel="isRecording && stopRecording()">
@mousedown.prevent="startRecording"
@mouseup.prevent="stopRecording"
@mouseleave="isRecording && stopRecording()"
@touchstart.prevent="startRecording"
@touchend.prevent="stopRecording"
@touchcancel="isRecording && stopRecording()"
>
<audio-outlined /> <audio-outlined />
<span>{{ isRecording ? '正在录音,松开结束' : '按住录音' }}</span> <span>{{ isRecording ? '正在录音,松开结束' : '按住录音' }}</span>
</button> </button>
<div class="ai-btns"> <div class="ai-btns">
<button <button class="ai-btn single" :disabled="voicingSingle || voicingAll || isRecording" @click="voiceSingle">
class="ai-btn single"
:disabled="voicingSingle || voicingAll || isRecording"
@click="voiceSingle"
>
<thunderbolt-outlined /> <thunderbolt-outlined />
<span>{{ voicingSingle ? '配音中…' : 'AI 配音此页' }}</span> <span>{{ voicingSingle ? '配音中…' : 'AI 配音此页' }}</span>
</button> </button>
<button <button class="ai-btn all" :disabled="voicingSingle || voicingAll || isRecording" @click="voiceAllConfirm">
class="ai-btn all"
:disabled="voicingSingle || voicingAll || isRecording"
@click="voiceAllConfirm"
>
<thunderbolt-outlined /> <thunderbolt-outlined />
<span>{{ voicingAll ? '配音中…' : '全部 AI 配音' }}</span> <span>{{ voicingAll ? '配音中…' : '全部 AI 配音' }}</span>
</button> </button>
@ -93,13 +78,8 @@ export default { name: 'DubbingView' }
<span class="thumb-count">{{ voicedCount }} / {{ pages.length }} 已完成</span> <span class="thumb-count">{{ voicedCount }} / {{ pages.length }} 已完成</span>
</div> </div>
<div class="thumb-strip"> <div class="thumb-strip">
<div <div v-for="(p, i) in pages" :key="i" class="thumb-item"
v-for="(p, i) in pages" :class="{ active: i === idx, voiced: !!(p.audioUrl || p.localBlob) }" @click="switchPage(i)">
:key="i"
class="thumb-item"
:class="{ active: i === idx, voiced: !!(p.audioUrl || p.localBlob) }"
@click="switchPage(i)"
>
<img v-if="p.imageUrl" :src="p.imageUrl" class="thumb-img" /> <img v-if="p.imageUrl" :src="p.imageUrl" class="thumb-img" />
<div v-else class="thumb-placeholder"> <div v-else class="thumb-placeholder">
<picture-outlined /> <picture-outlined />
@ -535,6 +515,7 @@ async function finish() {
// --- Load --- // --- Load ---
async function loadWork() { async function loadWork() {
store.reset();
loading.value = true loading.value = true
try { try {
if (!store.workDetail || store.workDetail.workId !== workId.value) { if (!store.workDetail || store.workDetail.workId !== workId.value) {
@ -586,11 +567,13 @@ onBeforeUnmount(() => {
align-items: center; align-items: center;
justify-content: center; justify-content: center;
} }
.loading-icon { .loading-icon {
font-size: 44px; font-size: 44px;
color: var(--ai-primary); color: var(--ai-primary);
margin-bottom: 14px; margin-bottom: 14px;
} }
.loading-text { .loading-text {
font-size: 14px; font-size: 14px;
color: var(--ai-text-sub); color: var(--ai-text-sub);
@ -612,6 +595,7 @@ onBeforeUnmount(() => {
flex-direction: column; flex-direction: column;
gap: 0; gap: 0;
} }
.page-image-wrap { .page-image-wrap {
position: relative; position: relative;
border-radius: 18px; border-radius: 18px;
@ -619,6 +603,7 @@ onBeforeUnmount(() => {
background: #1e1b4b; background: #1e1b4b;
box-shadow: 0 8px 24px rgba(99, 102, 241, 0.18); box-shadow: 0 8px 24px rgba(99, 102, 241, 0.18);
} }
.page-image { .page-image {
width: 100%; width: 100%;
display: block; display: block;
@ -626,6 +611,7 @@ onBeforeUnmount(() => {
max-height: 32vh; max-height: 32vh;
background: #1e1b4b; background: #1e1b4b;
} }
.placeholder { .placeholder {
height: 180px; height: 180px;
display: flex; display: flex;
@ -634,6 +620,7 @@ onBeforeUnmount(() => {
font-size: 48px; font-size: 48px;
color: rgba(255, 255, 255, 0.3); color: rgba(255, 255, 255, 0.3);
} }
.page-badge-pill { .page-badge-pill {
position: absolute; position: absolute;
top: 10px; top: 10px;
@ -676,6 +663,7 @@ onBeforeUnmount(() => {
padding: 12px 14px; padding: 12px 14px;
box-shadow: 0 2px 12px rgba(99, 102, 241, 0.05); box-shadow: 0 2px 12px rgba(99, 102, 241, 0.05);
} }
.play-btn { .play-btn {
width: 42px; width: 42px;
height: 42px; height: 42px;
@ -692,24 +680,30 @@ onBeforeUnmount(() => {
box-shadow: 0 4px 14px rgba(99, 102, 241, 0.32); box-shadow: 0 4px 14px rgba(99, 102, 241, 0.32);
transition: transform 0.2s; transition: transform 0.2s;
&:active { transform: scale(0.92); } &:active {
transform: scale(0.92);
}
} }
.audio-progress { .audio-progress {
flex: 1; flex: 1;
min-width: 0; min-width: 0;
} }
.audio-bar { .audio-bar {
height: 5px; height: 5px;
background: rgba(99, 102, 241, 0.1); background: rgba(99, 102, 241, 0.1);
border-radius: 3px; border-radius: 3px;
overflow: hidden; overflow: hidden;
} }
.audio-bar-fill { .audio-bar-fill {
height: 100%; height: 100%;
background: var(--ai-gradient); background: var(--ai-gradient);
border-radius: 3px; border-radius: 3px;
transition: width 0.3s; transition: width 0.3s;
} }
.audio-time { .audio-time {
font-size: 11px; font-size: 11px;
color: var(--ai-text-sub); color: var(--ai-text-sub);
@ -717,6 +711,7 @@ onBeforeUnmount(() => {
display: block; display: block;
font-weight: 500; font-weight: 500;
} }
.audio-source-tag { .audio-source-tag {
display: inline-flex; display: inline-flex;
align-items: center; align-items: center;
@ -728,13 +723,17 @@ onBeforeUnmount(() => {
white-space: nowrap; white-space: nowrap;
flex-shrink: 0; flex-shrink: 0;
:deep(.anticon) { font-size: 11px; } :deep(.anticon) {
font-size: 11px;
}
&.ai { &.ai {
background: rgba(99, 102, 241, 0.1); background: rgba(99, 102, 241, 0.1);
color: var(--ai-primary); color: var(--ai-primary);
} }
&.local, &.human {
&.local,
&.human {
background: rgba(239, 68, 68, 0.1); background: rgba(239, 68, 68, 0.1);
color: #ef4444; color: #ef4444;
} }
@ -751,7 +750,9 @@ onBeforeUnmount(() => {
color: var(--ai-text-sub); color: var(--ai-text-sub);
font-weight: 500; font-weight: 500;
:deep(.anticon) { font-size: 16px; } :deep(.anticon) {
font-size: 16px;
}
} }
/* ---------- 配音操作按钮 ---------- */ /* ---------- 配音操作按钮 ---------- */
@ -780,7 +781,9 @@ onBeforeUnmount(() => {
justify-content: center; justify-content: center;
gap: 10px; gap: 10px;
:deep(.anticon) { font-size: 18px; } :deep(.anticon) {
font-size: 18px;
}
&:active, &:active,
&.recording { &.recording {
@ -800,6 +803,7 @@ onBeforeUnmount(() => {
display: flex; display: flex;
gap: 10px; gap: 10px;
} }
.ai-btn { .ai-btn {
flex: 1; flex: 1;
padding: 13px 8px; padding: 13px 8px;
@ -813,7 +817,9 @@ onBeforeUnmount(() => {
gap: 6px; gap: 6px;
transition: all 0.2s; transition: all 0.2s;
:deep(.anticon) { font-size: 14px; } :deep(.anticon) {
font-size: 14px;
}
&.single { &.single {
background: var(--ai-gradient); background: var(--ai-gradient);
@ -821,7 +827,9 @@ onBeforeUnmount(() => {
border: none; border: none;
box-shadow: 0 4px 14px rgba(99, 102, 241, 0.32); box-shadow: 0 4px 14px rgba(99, 102, 241, 0.32);
&:hover { transform: translateY(-1px); } &:hover {
transform: translateY(-1px);
}
} }
&.all { &.all {
@ -836,12 +844,21 @@ onBeforeUnmount(() => {
} }
} }
&:active { transform: scale(0.97); } &:active {
&:disabled { opacity: 0.4; pointer-events: none; } transform: scale(0.97);
}
&:disabled {
opacity: 0.4;
pointer-events: none;
}
} }
/* ---------- 缩略图横向胶卷 ---------- */ /* ---------- 缩略图横向胶卷 ---------- */
.thumb-section { margin-top: 2px; } .thumb-section {
margin-top: 2px;
}
.thumb-header { .thumb-header {
display: flex; display: flex;
justify-content: space-between; justify-content: space-between;
@ -849,11 +866,13 @@ onBeforeUnmount(() => {
margin-bottom: 8px; margin-bottom: 8px;
padding: 0 2px; padding: 0 2px;
} }
.thumb-title { .thumb-title {
font-size: 13px; font-size: 13px;
font-weight: 700; font-weight: 700;
color: var(--ai-text); color: var(--ai-text);
} }
.thumb-count { .thumb-count {
font-size: 12px; font-size: 12px;
color: var(--ai-primary); color: var(--ai-primary);
@ -871,7 +890,10 @@ onBeforeUnmount(() => {
scrollbar-width: none; scrollbar-width: none;
-ms-overflow-style: none; -ms-overflow-style: none;
&::-webkit-scrollbar { display: none; }
&::-webkit-scrollbar {
display: none;
}
} }
.thumb-item { .thumb-item {
@ -903,12 +925,14 @@ onBeforeUnmount(() => {
background: linear-gradient(to top, rgba(16, 185, 129, 0.85), transparent); background: linear-gradient(to top, rgba(16, 185, 129, 0.85), transparent);
} }
} }
.thumb-img { .thumb-img {
width: 100%; width: 100%;
height: 100%; height: 100%;
object-fit: cover; object-fit: cover;
display: block; display: block;
} }
.thumb-placeholder { .thumb-placeholder {
width: 100%; width: 100%;
height: 100%; height: 100%;
@ -918,6 +942,7 @@ onBeforeUnmount(() => {
font-size: 22px; font-size: 22px;
color: rgba(255, 255, 255, 0.3); color: rgba(255, 255, 255, 0.3);
} }
.thumb-num { .thumb-num {
position: absolute; position: absolute;
bottom: 0; bottom: 0;
@ -933,6 +958,7 @@ onBeforeUnmount(() => {
line-height: 1; line-height: 1;
transition: background 0.3s; transition: background 0.3s;
} }
.thumb-voice-flag { .thumb-voice-flag {
position: absolute; position: absolute;
top: 4px; top: 4px;
@ -953,6 +979,7 @@ onBeforeUnmount(() => {
.dubbing-bottom { .dubbing-bottom {
border-top: 1px solid rgba(99, 102, 241, 0.06); border-top: 1px solid rgba(99, 102, 241, 0.06);
} }
.finish-btn { .finish-btn {
display: flex !important; display: flex !important;
align-items: center; align-items: center;
@ -962,8 +989,11 @@ onBeforeUnmount(() => {
padding: 14px 0 !important; padding: 14px 0 !important;
border-radius: 28px !important; border-radius: 28px !important;
:deep(.anticon) { font-size: 16px; } :deep(.anticon) {
font-size: 16px;
}
} }
.local-hint { .local-hint {
display: flex; display: flex;
align-items: center; align-items: center;
@ -975,7 +1005,10 @@ onBeforeUnmount(() => {
margin-top: 8px; margin-top: 8px;
font-weight: 500; font-weight: 500;
:deep(.anticon) { font-size: 13px; color: var(--ai-primary); } :deep(.anticon) {
font-size: 13px;
color: var(--ai-primary);
}
} }
/* ---------- Toast ---------- */ /* ---------- Toast ---------- */
@ -996,10 +1029,16 @@ onBeforeUnmount(() => {
box-shadow: 0 6px 20px rgba(15, 12, 41, 0.25); box-shadow: 0 6px 20px rgba(15, 12, 41, 0.25);
backdrop-filter: blur(8px); backdrop-filter: blur(8px);
} }
.fade-enter-active, .fade-enter-active,
.fade-leave-active { transition: opacity 0.3s; } .fade-leave-active {
transition: opacity 0.3s;
}
.fade-enter-from, .fade-enter-from,
.fade-leave-to { opacity: 0; } .fade-leave-to {
opacity: 0;
}
/* ---------- 确认弹窗 ---------- */ /* ---------- 确认弹窗 ---------- */
.confirm-overlay { .confirm-overlay {
@ -1013,6 +1052,7 @@ onBeforeUnmount(() => {
justify-content: center; justify-content: center;
padding: 20px; padding: 20px;
} }
.confirm-modal { .confirm-modal {
background: #fff; background: #fff;
border-radius: 20px; border-radius: 20px;
@ -1023,27 +1063,39 @@ onBeforeUnmount(() => {
box-shadow: 0 20px 60px rgba(15, 12, 41, 0.25); box-shadow: 0 20px 60px rgba(15, 12, 41, 0.25);
animation: confirmFadeIn 0.2s ease; animation: confirmFadeIn 0.2s ease;
} }
@keyframes confirmFadeIn { @keyframes confirmFadeIn {
from { opacity: 0; transform: scale(0.95); } from {
to { opacity: 1; transform: scale(1); } opacity: 0;
transform: scale(0.95);
}
to {
opacity: 1;
transform: scale(1);
}
} }
.confirm-title { .confirm-title {
font-size: 16px; font-size: 16px;
font-weight: 700; font-weight: 700;
color: var(--ai-text); color: var(--ai-text);
margin-bottom: 10px; margin-bottom: 10px;
} }
.confirm-content { .confirm-content {
font-size: 14px; font-size: 14px;
color: var(--ai-text-sub); color: var(--ai-text-sub);
line-height: 1.6; line-height: 1.6;
margin-bottom: 22px; margin-bottom: 22px;
} }
.confirm-actions { .confirm-actions {
display: flex; display: flex;
gap: 10px; gap: 10px;
justify-content: flex-end; justify-content: flex-end;
} }
.confirm-btn { .confirm-btn {
padding: 8px 18px; padding: 8px 18px;
border-radius: 16px; border-radius: 16px;
@ -1056,14 +1108,22 @@ onBeforeUnmount(() => {
border: 1px solid rgba(99, 102, 241, 0.2); border: 1px solid rgba(99, 102, 241, 0.2);
background: #fff; background: #fff;
color: var(--ai-text-sub); color: var(--ai-text-sub);
&:hover { border-color: var(--ai-primary); color: var(--ai-primary); }
&:hover {
border-color: var(--ai-primary);
color: var(--ai-primary);
}
} }
&.ok { &.ok {
border: none; border: none;
background: var(--ai-gradient); background: var(--ai-gradient);
color: #fff; color: #fff;
box-shadow: 0 4px 12px rgba(99, 102, 241, 0.32); box-shadow: 0 4px 12px rgba(99, 102, 241, 0.32);
&:hover { transform: translateY(-1px); }
&:hover {
transform: translateY(-1px);
}
} }
} }
</style> </style>

View File

@ -92,6 +92,7 @@ import { STATUS, getRouteByStatus } from '@/utils/aicreate/status'
const router = useRouter() const router = useRouter()
const route = useRoute() const route = useRoute()
const store = useAicreateStore()
const loading = ref(true) const loading = ref(true)
const error = ref('') const error = ref('')
const pages = ref<any[]>([]) const pages = ref<any[]>([])
@ -122,6 +123,7 @@ function scrollThumbIntoView(i: number) {
const workId = computed(() => route.params.workId) const workId = computed(() => route.params.workId)
async function loadWork() { async function loadWork() {
store.reset();
loading.value = true loading.value = true
error.value = '' error.value = ''