fix: text bug
Some checks are pending
sync2gitee / repo-sync (push) Waiting to run
Typos Check / Spell Check with Typos (push) Waiting to run

This commit is contained in:
wangdan-fit2cloud 2025-07-10 11:36:16 +08:00
parent 3d9e7dd4b1
commit b62c79fda6
2 changed files with 2 additions and 49 deletions

View File

@ -266,7 +266,7 @@ export default {
label: '文本转语音', label: '文本转语音',
text: '将文本通过语音合成模型转换为音频', text: '将文本通过语音合成模型转换为音频',
tts_model: { tts_model: {
label: '语音识别模型' label: '语音合成模型'
}, },
content: { content: {
label: '选择文本内容' label: '选择文本内容'

View File

@ -135,51 +135,4 @@ onMounted(() => {
}) })
</script> </script>
<style lang="scss" scoped> <style lang="scss" scoped></style>
.p-16-24 {
padding: 16px 24px;
}
.mb-16 {
margin-bottom: 16px;
}
.flex-between {
display: flex;
justify-content: space-between;
align-items: center;
}
.flex {
display: flex;
}
.align-center {
align-items: center;
}
.ml-8 {
margin-left: 8px;
}
.mr-8 {
margin-right: 8px;
}
.ml-12 {
margin-left: 12px;
}
.mr-4 {
margin-right: 4px;
}
.cursor {
cursor: pointer;
}
.icon {
width: 32px; //
height: 32px; //
}
</style>