增加voiceId 显示
parent
076a71a240
commit
da684dbb46
|
@ -12,6 +12,7 @@
|
|||
<audio controls class="w-full" :src="row.url" @play="handleAudioPlay">您的浏览器不支持音频播放</audio>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column prop="speakerId" label="voiceId" width="120"> </el-table-column>
|
||||
<el-table-column prop="status" label="状态">
|
||||
<template #default="{ row }">
|
||||
<el-tag :type="getStatusType(row.status)">{{ getStatusText(row.status) }}</el-tag>
|
||||
|
@ -77,6 +78,7 @@ const fetchHistory = async () => {
|
|||
status: item.status,
|
||||
attempts: item.attempts,
|
||||
createdAt: item.createdAt,
|
||||
speakerId: item.speakerId,
|
||||
}));
|
||||
} catch (error) {
|
||||
console.error(error);
|
||||
|
|
Loading…
Reference in New Issue