mirror of
https://github.com/1Panel-dev/MaxKB.git
synced 2025-12-26 10:02:46 +00:00
refactor: 增加应用不选择语音模型报错提示
--bug=1046729 --user=刘瑞斌 【应用】应用语音播放选择模型播放后,不选择具体的模型,点击播放按钮没有反应 https://www.tapd.cn/57709429/s/1581681
This commit is contained in:
parent
dc71d55d49
commit
14bf09c4fe
|
|
@ -543,7 +543,7 @@ import type { FormInstance, FormRules } from 'element-plus'
|
|||
import type { ApplicationFormType } from '@/api/type/application'
|
||||
import type { Provider } from '@/api/type/model'
|
||||
import { relatedObject } from '@/utils/utils'
|
||||
import { MsgSuccess } from '@/utils/message'
|
||||
import { MsgSuccess, MsgWarning } from '@/utils/message'
|
||||
import useStore from '@/stores'
|
||||
import { t } from '@/locales'
|
||||
|
||||
|
|
@ -634,6 +634,14 @@ function submitSystemDialog(val: string) {
|
|||
}
|
||||
|
||||
const submit = async (formEl: FormInstance | undefined) => {
|
||||
if (applicationForm.value.tts_model_enable && !applicationForm.value.tts_model_id && applicationForm.value.tts_type === 'TTS') {
|
||||
MsgWarning(t('请选择语音播放模型'))
|
||||
return
|
||||
}
|
||||
if (applicationForm.value.stt_model_enable && !applicationForm.value.stt_model_id) {
|
||||
MsgWarning(t('请选择语音输入模型'))
|
||||
return
|
||||
}
|
||||
if (!formEl) return
|
||||
await formEl.validate((valid, fields) => {
|
||||
if (valid) {
|
||||
|
|
|
|||
|
|
@ -258,7 +258,7 @@ import useStore from '@/stores'
|
|||
import applicationApi from '@/api/application'
|
||||
import type { Provider } from '@/api/type/model'
|
||||
import FieldFormDialog from './component/FieldFormDialog.vue'
|
||||
import { MsgError } from '@/utils/message'
|
||||
import { MsgError, MsgWarning } from '@/utils/message'
|
||||
import { t } from '@/locales'
|
||||
const { model } = useStore()
|
||||
|
||||
|
|
@ -308,6 +308,14 @@ const form_data = computed({
|
|||
const baseNodeFormRef = ref<FormInstance>()
|
||||
|
||||
const validate = () => {
|
||||
if (form_data.value.tts_model_enable && !form_data.value.tts_model_id && form_data.value.tts_type === 'TTS') {
|
||||
MsgWarning(t('请选择语音播放模型'))
|
||||
return
|
||||
}
|
||||
if (form_data.value.stt_model_enable && !form_data.value.stt_model_id) {
|
||||
MsgWarning(t('请选择语音输入模型'))
|
||||
return
|
||||
}
|
||||
return baseNodeFormRef.value?.validate().catch((err) => {
|
||||
return Promise.reject({ node: props.nodeModel, errMessage: err })
|
||||
})
|
||||
|
|
|
|||
Loading…
Reference in New Issue