This commit is contained in:
zhoutianchi
2026-01-26 14:27:04 +08:00
parent 4de6e9cc57
commit 7640282a93
2 changed files with 12 additions and 3 deletions

View File

@@ -26,7 +26,7 @@
import { ref, reactive, watch, nextTick } from 'vue'
import { useMessage, useMessageBox } from '/@/hooks/message'
import { loadTiandituMap } from "/@/api/recruit/recruitstudentsignup"
import { putItemObj } from "/@/api/admin/dict"
import { editDormrange } from "/@/api/admin/dict"
import { getDicts } from "/@/api/admin/dict"
import { TIANDITU_TOKEN } from '/@/config/map'
@@ -221,7 +221,7 @@ const dataFormSubmit = async () => {
formRef.value?.validate((valid: boolean) => {
if (valid) {
canSubmit.value = false
putItemObj({ id: dictId.value, value: form.raidus }).then(() => {
editDormrange({ id: dictId.value, value: form.raidus }).then(() => {
message.success('修改成功')
visible.value = false
canSubmit.value = true