mirror of
https://github.com/1Panel-dev/MaxKB.git
synced 2025-12-26 01:33:05 +00:00
chore: 修复前端编译错误
This commit is contained in:
parent
04ef6b53d1
commit
45e9b9120b
|
|
@ -3,6 +3,7 @@
|
|||
<el-col :span="12">
|
||||
<el-card shadow="never">
|
||||
<DynamicsFormConstructor
|
||||
v-model="item"
|
||||
label-position="top"
|
||||
require-asterisk-position="right"
|
||||
ref="DynamicsFormConstructorRef"
|
||||
|
|
@ -38,6 +39,7 @@ const add_field = () => {
|
|||
}
|
||||
}
|
||||
const form_data = ref({})
|
||||
const item = ref({})
|
||||
const dynamicsFormRef = ref<InstanceType<typeof DynamicsForm>>()
|
||||
</script>
|
||||
<style lang="scss"></style>
|
||||
|
|
|
|||
|
|
@ -400,7 +400,7 @@
|
|||
type="primary"
|
||||
link
|
||||
@click="openTTSParamSettingDialog"
|
||||
:disabled="!applicationForm.tts_model_id && form_data.tts_type === 'BROWSER'"
|
||||
:disabled="!applicationForm.tts_model_id && applicationForm.tts_type === 'BROWSER'"
|
||||
>
|
||||
<el-icon class="mr-4"><Setting /></el-icon>
|
||||
设置
|
||||
|
|
|
|||
|
|
@ -214,7 +214,7 @@ const closeInterval = () => {
|
|||
|
||||
const paramSettingRef = ref<InstanceType<typeof ParamSettingDialog>>()
|
||||
const openParamSetting = () => {
|
||||
paramSettingRef.value?.open(props.model)
|
||||
paramSettingRef.value?.open()
|
||||
}
|
||||
|
||||
onMounted(() => {
|
||||
|
|
|
|||
Loading…
Reference in New Issue