'考试管理人员管理'

This commit is contained in:
esacpe
2025-09-24 20:32:05 +08:00
parent 10a8094a3c
commit 6fe683e97e
11 changed files with 48 additions and 46 deletions

View File

@ -41,7 +41,7 @@ const props = defineProps({
}
})
const emits = defineEmits(['update:modelValue'])
const emits = defineEmits(['update:modelValue', 'refresh'])
const dialogVisible = computed({
get() {
@ -89,11 +89,11 @@ const rules = {
const formData = ref({})
const close = () => {
FormRef.value?.reset()
dialogVisible.value = false
}
const open = (row = {}, type = 'add') => {
FormRef.value?.reset()
disabled.value = false
dialogVisible.value = true
formData.value = { ...row }