2026-06-26 20b96473f2520590a0dca6b775b81e3ea06a77a0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<script lang="ts" setup>
  import type { InfraStudentApi } from '#/api/infra/demo';
 
  import { computed, ref } from 'vue';
 
  import { useVbenModal } from '@vben/common-ui';
 
  import { ElMessage } from 'element-plus';
 
  import { useVbenForm } from '#/adapter/form';
  import { getStudentTeacher, createStudentTeacher, updateStudentTeacher } from '#/api/infra/demo';
  import { $t } from '#/locales';
 
  import { useStudentTeacherFormSchema } from '../data';
 
  const emit = defineEmits(['success']);
  const formData = ref<InfraStudentApi.StudentTeacher>();
  const getTitle = computed(() => {
    return formData.value?.id
        ? $t('ui.actionTitle.edit', ['学生班主任'])
        : $t('ui.actionTitle.create', ['学生班主任']);
  });
 
  const [Form, formApi] = useVbenForm({
    commonConfig: {
      componentProps: {
        class: 'w-full',
      },
      formItemClass: 'col-span-2',
      labelWidth: 80,
    },
    layout: 'horizontal',
    schema: useStudentTeacherFormSchema(),
    showDefaultActions: false
  });
 
  const [Modal, modalApi] = useVbenModal({
    async onConfirm() {
      const { valid } = await formApi.validate();
      if (!valid) {
        return;
      }
 
      modalApi.lock();
      // 提交表单
      const data = (await formApi.getValues()) as InfraStudentApi.StudentTeacher;
      data.studentId = formData.value?.studentId;
      try {
        await (formData.value?.id ? updateStudentTeacher(data) : createStudentTeacher(data));
        // 关闭并提示
        await modalApi.close();
        emit('success');
        ElMessage.success($t('ui.actionMessage.operationSuccess'));
      } finally {
        modalApi.unlock();
      }
    },
    async onOpenChange(isOpen: boolean) {
      if (!isOpen) {
        formData.value = undefined;
        return;
      }
 
      // 加载数据
      let data = modalApi.getData<InfraStudentApi.StudentTeacher>();
      if (!data) {
        return;
      }
      if (data.id) {
        modalApi.lock();
        try {
          data = await getStudentTeacher(data.id);
        } finally {
          modalApi.unlock();
        }
      }
      // 设置到 values
      formData.value = data;
      await formApi.setValues(formData.value);
    },
  });
</script>
 
<template>
  <Modal :title="getTitle">
    <Form class="mx-4" />
  </Modal>
</template>