style: 修复el-form-item label样式没生效的问题
This commit is contained in:
parent
88bf5c25d2
commit
2d7e00031e
@ -865,4 +865,8 @@ onMounted(() => {
|
|||||||
.prologue-md-editor {
|
.prologue-md-editor {
|
||||||
height: 150px;
|
height: 150px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
:deep(.el-form-item__label) {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|||||||
@ -285,7 +285,7 @@ const props = defineProps<{ nodeModel: any }>()
|
|||||||
const sttModelOptions = ref<any>(null)
|
const sttModelOptions = ref<any>(null)
|
||||||
const ttsModelOptions = ref<any>(null)
|
const ttsModelOptions = ref<any>(null)
|
||||||
const providerOptions = ref<Array<Provider>>([])
|
const providerOptions = ref<Array<Provider>>([])
|
||||||
const TTSModeParamSettingDialogRef = ref<InstanceType<typeof AIModeParamSettingDialog>>()
|
const TTSModeParamSettingDialogRef = ref<InstanceType<typeof TTSModeParamSettingDialog>>()
|
||||||
|
|
||||||
const form = {
|
const form = {
|
||||||
name: '',
|
name: '',
|
||||||
@ -420,4 +420,8 @@ onMounted(() => {
|
|||||||
getSTTModel()
|
getSTTModel()
|
||||||
})
|
})
|
||||||
</script>
|
</script>
|
||||||
<style lang="scss" scoped></style>
|
<style lang="scss" scoped>
|
||||||
|
:deep(.el-form-item__label) {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user