style: 修复el-form-item label样式没生效的问题

This commit is contained in:
CaptainB 2024-10-18 15:41:54 +08:00 committed by 刘瑞斌
parent 88bf5c25d2
commit 2d7e00031e
2 changed files with 10 additions and 2 deletions

View File

@ -865,4 +865,8 @@ onMounted(() => {
.prologue-md-editor {
height: 150px;
}
:deep(.el-form-item__label) {
display: block;
}
</style>

View File

@ -285,7 +285,7 @@ const props = defineProps<{ nodeModel: any }>()
const sttModelOptions = ref<any>(null)
const ttsModelOptions = ref<any>(null)
const providerOptions = ref<Array<Provider>>([])
const TTSModeParamSettingDialogRef = ref<InstanceType<typeof AIModeParamSettingDialog>>()
const TTSModeParamSettingDialogRef = ref<InstanceType<typeof TTSModeParamSettingDialog>>()
const form = {
name: '',
@ -420,4 +420,8 @@ onMounted(() => {
getSTTModel()
})
</script>
<style lang="scss" scoped></style>
<style lang="scss" scoped>
:deep(.el-form-item__label) {
display: block;
}
</style>