Files
sionrui/frontend/app/web-gold/src/views/dh/VoiceCopy.vue

436 lines
12 KiB
Vue
Raw Normal View History

2025-11-19 00:12:47 +08:00
<template>
2026-01-17 19:33:59 +08:00
<BasicLayout
title="配音管理"
:show-back="false"
>
2025-11-19 00:12:47 +08:00
<!-- 搜索栏 -->
<div class="search-bar">
<a-space>
2026-01-17 19:33:59 +08:00
<a-button type="primary" @click="handleCreate">
<PlusOutlined />
新建配音
</a-button>
2025-11-19 00:12:47 +08:00
<a-input
v-model:value="searchParams.name"
placeholder="搜索配音名称"
style="width: 250px"
@press-enter="handleSearch"
>
2025-11-19 01:39:56 +08:00
<SearchOutlined />
2025-11-19 00:12:47 +08:00
</a-input>
2026-01-17 19:33:59 +08:00
<a-button @click="handleSearch">查询</a-button>
2025-11-19 00:12:47 +08:00
<a-button @click="handleReset">重置</a-button>
</a-space>
</div>
2025-11-10 00:59:40 +08:00
2025-11-19 00:12:47 +08:00
<!-- 列表表格 -->
<div class="table-container">
<a-table
:columns="columns"
:data-source="voiceList"
:loading="loading"
:pagination="pagination"
row-key="id"
@change="handleTableChange"
>
<template #bodyCell="{ column, record }">
2025-11-19 01:39:56 +08:00
<div v-if="column.key === 'name'" class="voice-name">
{{ record.name || '未命名' }}
</div>
<span v-else-if="column.key === 'createTime'">
{{ formatDateTime(record.createTime) }}
</span>
<a-button v-else-if="column.key === 'fileUrl'" type="link" size="small" @click="handlePlayAudio(record)">
<PlayCircleOutlined />
播放
</a-button>
<a-space v-else-if="column.key === 'actions'">
<a-button type="link" size="small" @click="handleEdit(record)">编辑</a-button>
<a-button type="link" size="small" danger @click="handleDelete(record)">删除</a-button>
</a-space>
2025-11-19 00:12:47 +08:00
</template>
</a-table>
</div>
2025-11-10 00:59:40 +08:00
2025-11-19 01:39:56 +08:00
<!-- 表单 Modal -->
2025-11-19 00:12:47 +08:00
<a-modal
v-model:open="modalVisible"
:title="isCreateMode ? '新建配音' : '编辑配音'"
:width="600"
:confirm-loading="submitting"
@ok="handleSubmit"
@cancel="handleCancel"
>
2025-11-19 01:39:56 +08:00
<a-form ref="formRef" :model="formData" :rules="formRules" layout="vertical">
2025-11-19 00:12:47 +08:00
<a-form-item label="配音名称" name="name">
<a-input v-model:value="formData.name" placeholder="请输入配音名称" />
</a-form-item>
<a-form-item
v-if="isCreateMode"
label="音频文件"
name="fileId"
:rules="[{ required: true, message: '请上传音频文件' }]"
>
<a-upload
v-model:file-list="fileList"
:custom-request="handleCustomUpload"
:before-upload="handleBeforeUpload"
:max-count="1"
accept="audio/*,.mp3,.wav,.aac,.m4a,.flac,.ogg"
@remove="handleRemoveFile"
@change="handleFileListChange"
>
2026-01-17 14:43:42 +08:00
<a-button type="primary" :loading="uploadState.uploading">
<UploadOutlined v-if="!uploadState.uploading" />
{{ uploadState.uploading ? '上传中...' : (fileList.length > 0 ? '重新上传' : '上传音频文件') }}
2025-11-19 00:12:47 +08:00
</a-button>
</a-upload>
2025-11-19 01:39:56 +08:00
<div class="upload-hint">
支持格式MP3WAVAACM4AFLACOGG单个文件不超过 50MB<br>
<span class="hint-text">🎤 配音建议使用 30 - 2 分钟的短配音效果更佳</span>
</div>
2025-11-19 00:12:47 +08:00
</a-form-item>
<a-form-item label="备注" name="note">
2025-11-19 01:39:56 +08:00
<a-textarea v-model="formData.note" :rows="3" placeholder="请输入备注信息" />
2025-11-19 00:12:47 +08:00
</a-form-item>
</a-form>
</a-modal>
2025-11-19 01:39:56 +08:00
<audio ref="audioPlayer" style="display: none" />
2026-01-17 19:33:59 +08:00
</BasicLayout>
2025-11-19 00:12:47 +08:00
</template>
<script setup>
2025-11-19 21:57:16 +08:00
import { ref, reactive, computed, onMounted, nextTick } from 'vue'
2025-11-19 00:12:47 +08:00
import { message, Modal } from 'ant-design-vue'
2025-11-19 01:39:56 +08:00
import { PlusOutlined, SearchOutlined, UploadOutlined, PlayCircleOutlined } from '@ant-design/icons-vue'
2025-11-19 00:12:47 +08:00
import { VoiceService } from '@/api/voice'
import { MaterialService } from '@/api/material'
2026-01-17 14:43:42 +08:00
import { useUpload } from '@/composables/useUpload'
2025-11-19 00:12:47 +08:00
import dayjs from 'dayjs'
2026-01-17 19:33:59 +08:00
import BasicLayout from '@/layouts/components/BasicLayout.vue'
2025-11-19 00:12:47 +08:00
2025-11-19 01:39:56 +08:00
// ========== 常量 ==========
2025-11-19 00:12:47 +08:00
const DEFAULT_FORM_DATA = {
id: null,
2025-11-10 00:59:40 +08:00
name: '',
2025-11-19 00:12:47 +08:00
fileId: null,
autoTranscribe: true,
language: 'zh-CN',
2025-11-10 00:59:40 +08:00
gender: 'female',
2025-11-19 21:57:16 +08:00
note: ''
2025-11-19 00:12:47 +08:00
}
// ========== 响应式数据 ==========
const loading = ref(false)
const submitting = ref(false)
const voiceList = ref([])
const modalVisible = ref(false)
const formMode = ref('create')
const formRef = ref(null)
const audioPlayer = ref(null)
const fileList = ref([])
const searchParams = reactive({
name: '',
pageNo: 1,
pageSize: 10
2025-11-10 00:59:40 +08:00
})
2025-11-19 00:12:47 +08:00
const pagination = reactive({
current: 1,
pageSize: 10,
total: 0,
showSizeChanger: true,
showTotal: (total) => `${total}`
})
2025-11-10 00:59:40 +08:00
2025-11-19 00:12:47 +08:00
const formData = reactive({ ...DEFAULT_FORM_DATA })
2025-11-10 00:59:40 +08:00
2026-01-17 14:43:42 +08:00
// ========== Upload Hook ==========
const { state: uploadState, upload } = useUpload()
2025-11-19 00:12:47 +08:00
// ========== 计算属性 ==========
const isCreateMode = computed(() => formMode.value === 'create')
2025-11-10 00:59:40 +08:00
2025-11-19 00:12:47 +08:00
// ========== 表格配置 ==========
const columns = [
{ title: '配音名称', key: 'name', dataIndex: 'name', width: 200 },
{ title: '创建时间', key: 'createTime', dataIndex: 'createTime', width: 180 },
{ title: '操作', key: 'actions', width: 200, fixed: 'right' }
]
2025-11-10 00:59:40 +08:00
2025-11-19 00:12:47 +08:00
// ========== 表单验证规则 ==========
const formRules = {
name: [{ required: true, message: '请输入配音名称' }],
fileId: [{ required: true, message: '请上传音频文件' }]
2025-11-16 19:35:55 +08:00
}
2025-11-19 00:12:47 +08:00
// ========== 工具函数 ==========
const formatDateTime = (value) => {
if (!value) return '-'
return dayjs(value).format('YYYY-MM-DD HH:mm:ss')
2025-11-10 00:59:40 +08:00
}
2025-11-19 00:12:47 +08:00
const fillFormData = (data) => {
Object.assign(formData, {
id: data.id || null,
name: data.name || '',
fileId: data.fileId || null,
language: data.language || 'zh-CN',
gender: data.gender || 'female',
2025-11-19 21:57:16 +08:00
note: data.note || ''
2025-11-19 00:12:47 +08:00
})
2025-11-10 00:59:40 +08:00
}
2025-11-19 00:12:47 +08:00
// ========== 数据加载 ==========
const loadVoiceList = async () => {
loading.value = true
2025-11-10 00:59:40 +08:00
try {
2025-11-19 01:39:56 +08:00
const res = await VoiceService.getPage({
2025-11-19 00:12:47 +08:00
pageNo: pagination.current,
pageSize: pagination.pageSize,
name: searchParams.name || undefined
2025-11-19 01:39:56 +08:00
})
if (res.code !== 0) return message.error(res.msg || '加载失败')
voiceList.value = res.data.list || []
pagination.total = res.data.total || 0
2025-11-19 00:12:47 +08:00
} catch (error) {
console.error('加载配音列表失败:', error)
message.error('加载失败,请稍后重试')
} finally {
loading.value = false
2025-11-10 00:59:40 +08:00
}
}
2025-11-19 00:12:47 +08:00
// ========== 搜索和分页 ==========
const handleSearch = () => {
pagination.current = 1
loadVoiceList()
2025-11-10 00:59:40 +08:00
}
2025-11-19 00:12:47 +08:00
const handleReset = () => {
searchParams.name = ''
pagination.current = 1
loadVoiceList()
2025-11-10 00:59:40 +08:00
}
2025-11-19 00:12:47 +08:00
const handleTableChange = (pag) => {
pagination.current = pag.current
pagination.pageSize = pag.pageSize
loadVoiceList()
2025-11-10 00:59:40 +08:00
}
2025-11-19 00:12:47 +08:00
// ========== CRUD 操作 ==========
const handleCreate = () => {
formMode.value = 'create'
resetForm()
modalVisible.value = true
}
const handleEdit = async (record) => {
formMode.value = 'edit'
try {
const res = await VoiceService.get(record.id)
2025-11-19 01:39:56 +08:00
fillFormData(res.code === 0 && res.data ? res.data : record)
2025-11-19 00:12:47 +08:00
} catch (error) {
console.error('获取配音详情失败:', error)
2025-11-19 01:39:56 +08:00
fillFormData(record)
2025-11-19 00:12:47 +08:00
}
modalVisible.value = true
2025-11-10 00:59:40 +08:00
}
2025-11-19 00:12:47 +08:00
const handleDelete = (record) => {
2025-11-10 00:59:40 +08:00
Modal.confirm({
2025-11-19 00:12:47 +08:00
title: '确认删除',
content: `确定要删除配音「${record.name}」吗?此操作不可恢复。`,
2025-11-10 00:59:40 +08:00
okText: '删除',
okButtonProps: { danger: true },
cancelText: '取消',
onOk: async () => {
2025-11-19 00:12:47 +08:00
try {
const res = await VoiceService.delete(record.id)
2025-11-19 01:39:56 +08:00
if (res.code !== 0) return message.error(res.msg || '删除失败')
message.success('删除成功')
loadVoiceList()
2025-11-19 00:12:47 +08:00
} catch (error) {
console.error('删除失败:', error)
message.error('删除失败,请稍后重试')
}
2025-11-10 00:59:40 +08:00
}
})
}
2025-11-19 00:12:47 +08:00
// ========== 音频播放 ==========
const handlePlayAudio = (record) => {
if (record.fileUrl && audioPlayer.value) {
audioPlayer.value.src = record.fileUrl
audioPlayer.value.play()
} else {
message.warning('音频文件不存在')
}
2025-11-16 19:35:55 +08:00
}
2025-11-19 00:12:47 +08:00
// ========== 文件上传 ==========
const handleBeforeUpload = (file) => {
2025-11-19 01:39:56 +08:00
const MAX_FILE_SIZE = 50 * 1024 * 1024
2025-11-19 00:12:47 +08:00
if (file.size > MAX_FILE_SIZE) {
2025-11-19 01:39:56 +08:00
message.error('文件大小不能超过 50MB')
2025-11-19 00:12:47 +08:00
return false
}
2025-11-16 19:35:55 +08:00
2025-11-19 00:12:47 +08:00
const validTypes = ['audio/mpeg', 'audio/wav', 'audio/wave', 'audio/x-wav', 'audio/aac', 'audio/mp4', 'audio/flac', 'audio/ogg']
const validExtensions = ['.mp3', '.wav', '.aac', '.m4a', '.flac', '.ogg']
const fileName = file.name.toLowerCase()
const fileType = file.type.toLowerCase()
2025-11-19 01:39:56 +08:00
const isValidType = validTypes.some(type => fileType.includes(type)) ||
2025-11-19 00:12:47 +08:00
validExtensions.some(ext => fileName.endsWith(ext))
2025-11-19 01:39:56 +08:00
2025-11-19 00:12:47 +08:00
if (!isValidType) {
message.error('请上传音频文件MP3、WAV、AAC、M4A、FLAC、OGG')
return false
}
2025-11-16 19:35:55 +08:00
2025-11-19 01:39:56 +08:00
return true
2025-11-16 19:35:55 +08:00
}
2025-11-19 00:12:47 +08:00
const handleCustomUpload = async (options) => {
const { file, onSuccess, onError } = options
2025-11-19 01:39:56 +08:00
2025-11-19 00:12:47 +08:00
try {
2026-01-17 14:43:42 +08:00
const fileId = await upload(file, {
fileCategory: 'voice',
groupId: null, // 配音模块不使用groupId
coverBase64: null,
onStart: () => {},
onProgress: () => {},
onSuccess: (id) => {
formData.fileId = id
message.success('文件上传成功')
onSuccess?.({ code: 0, data: id }, file)
},
onError: (error) => {
const errorMsg = error.message || '上传失败,请稍后重试'
message.error(errorMsg)
onError?.(error)
}
})
2025-11-19 01:39:56 +08:00
2026-01-17 14:43:42 +08:00
return fileId
2025-11-19 00:12:47 +08:00
} catch (error) {
console.error('上传失败:', error)
2025-11-19 01:39:56 +08:00
onError?.(error)
2025-11-19 00:12:47 +08:00
}
2025-11-16 19:35:55 +08:00
}
2025-11-19 00:12:47 +08:00
const handleFileListChange = (info) => {
// 处理文件列表变化,避免直接修改导致 DOM 错误
const { fileList: newFileList } = info
// 只更新文件列表,不直接修改文件项的状态
// 让组件自己管理状态
if (newFileList) {
fileList.value = newFileList.filter(item => item.status !== 'removed')
}
2025-11-16 19:35:55 +08:00
}
2025-11-19 00:12:47 +08:00
const handleRemoveFile = () => {
formData.fileId = null
fileList.value = []
2025-11-16 19:35:55 +08:00
}
2025-11-19 00:12:47 +08:00
// ========== 表单操作 ==========
const handleSubmit = async () => {
try {
await formRef.value.validate()
2025-11-19 01:39:56 +08:00
} catch {
return
}
submitting.value = true
2025-11-19 00:12:47 +08:00
2025-11-19 01:39:56 +08:00
const params = isCreateMode.value
? {
name: formData.name,
fileId: formData.fileId,
autoTranscribe: formData.autoTranscribe,
language: formData.language,
gender: formData.gender,
note: formData.note
}
: {
id: formData.id,
name: formData.name,
language: formData.language,
gender: formData.gender,
2025-11-19 21:57:16 +08:00
note: formData.note
2025-11-19 01:39:56 +08:00
}
try {
2025-11-19 00:12:47 +08:00
const res = isCreateMode.value
? await VoiceService.create(params)
: await VoiceService.update(params)
2025-11-19 01:39:56 +08:00
if (res.code !== 0) {
2025-11-19 00:12:47 +08:00
message.error(res.msg || '操作失败')
return
}
2025-11-19 01:39:56 +08:00
message.success(isCreateMode.value ? '创建成功' : '更新成功')
modalVisible.value = false
loadVoiceList()
} catch (error) {
2025-11-19 00:12:47 +08:00
console.error('提交失败:', error)
message.error('操作失败,请稍后重试')
} finally {
submitting.value = false
}
2025-11-16 19:35:55 +08:00
}
2025-11-19 00:12:47 +08:00
const handleCancel = () => {
modalVisible.value = false
resetForm()
2025-11-16 19:35:55 +08:00
}
2025-11-19 00:12:47 +08:00
const resetForm = () => {
Object.assign(formData, { ...DEFAULT_FORM_DATA })
fileList.value = []
formRef.value?.resetFields()
2025-11-16 19:35:55 +08:00
}
2025-11-19 00:12:47 +08:00
// ========== 生命周期 ==========
onMounted(() => {
loadVoiceList()
})
</script>
2025-11-16 19:35:55 +08:00
2025-11-19 00:12:47 +08:00
<style scoped>
2026-01-17 19:33:59 +08:00
.search-bar {
2025-11-19 01:39:56 +08:00
background: var(--color-surface);
border-radius: var(--radius-card);
2025-11-19 00:12:47 +08:00
margin-bottom: 16px;
2025-11-16 19:35:55 +08:00
}
2025-11-19 00:12:47 +08:00
.table-container {
2026-01-17 19:33:59 +08:00
background: var(--color-surface);
border-radius: var(--radius-card);
2025-11-16 19:35:55 +08:00
}
2025-11-19 00:12:47 +08:00
.voice-name {
font-weight: 500;
2025-11-16 19:35:55 +08:00
color: var(--color-text);
}
2025-11-19 00:12:47 +08:00
.upload-hint {
2025-11-16 19:35:55 +08:00
font-size: 12px;
color: var(--color-text-secondary);
2025-11-19 00:12:47 +08:00
margin-top: 8px;
line-height: 1.5;
2025-11-16 19:35:55 +08:00
}
</style>