Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor: 增加应用不选择语音模型报错提示 #1225

Merged
merged 1 commit into from
Sep 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion ui/src/views/application/ApplicationSetting.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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'

Expand Down Expand Up @@ -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) {
Expand Down
10 changes: 9 additions & 1 deletion ui/src/workflow/nodes/base-node/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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()

Expand Down Expand Up @@ -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 })
})
Expand Down
Loading