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