大屏项目初始化

This commit is contained in:
2026-03-08 13:05:57 +08:00
parent a052721622
commit f14cde0287
19 changed files with 329 additions and 357 deletions

View File

@@ -235,7 +235,7 @@ const handleSave = async () => {
if (formComponentRef.value) {
const isValid = await formComponentRef.value.validate()
if (!isValid) {
ElMessage.warning('表单验证失败请检查必填项')
ElMessage.warning('表单验证失败,请检查必填项');
return
}
}

View File

@@ -114,6 +114,7 @@ const handleSave = async () => {
if (formComponentRef.value) {
const isValid = await formComponentRef.value.validate()
if (!isValid) {
ElMessage.warning('表单验证失败,请检查必填项');
return
}
const selectedMenuIds = formComponentRef.value.getSelectedMenuIds()

View File

@@ -266,7 +266,7 @@ const handleSave = async () => {
if (formComponentRef.value) {
const isValid = await formComponentRef.value.validate()
if (!isValid) {
ElMessage.warning('表单验证失败请检查必填项')
ElMessage.warning('表单验证失败,请检查必填项')
return
}
}