Ben Lin
2025-03-08 858b9bccead46cdefc99325b7c956d50a2964309
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
<template>
  <BasicModal v-bind="$attrs" @register="registerModal" :title="getTitle" @ok="handleSubmit">
    <BasicForm @register="registerForm" />
  </BasicModal>
</template>
<script lang="ts">
  import { defineComponent, ref, computed, unref } from 'vue';
  import { BasicModal, useModalInner } from '/@/components/Modal';
  import { BasicForm, useForm } from '/@/components/Form/index';
  import { SaveUserGroup } from '/@/api/tigerapi/usergroup';
  import { formSchema } from './usergroup.data';
 
  //import { getUserGPParams } from '/@/api/tigerapi/system';
  export default defineComponent({
    name: 'DeptModal',
    components: { BasicModal, BasicForm },
    emits: ['success', 'register'],
    setup(_, { emit }) {
      const isUpdate = ref(true);
 
      const [registerForm, { resetFields, setFieldsValue, updateSchema, validate }] = useForm({
        labelWidth: 100,
        schemas: formSchema,
        showActionButtonGroup: false,
      });
 
      const [registerModal, { setModalProps, closeModal }] = useModalInner(async (data) => {
        resetFields();
        setModalProps({ confirmLoading: false });
        isUpdate.value = !!data?.isUpdate;
 
        if (unref(isUpdate)) {
          setFieldsValue({
            ...data.record,
          });
        }
        // const treeData = await getUserGPParams();
        // updateSchema({
        //   field: 'parentDept',
        //   componentProps: { treeData },
        // });
      });
 
      const getTitle = computed(() => (!unref(isUpdate) ? '新增用户组' : '编辑用户组'));
 
      async function handleSubmit() {
        try {
          const values = await validate();
          setModalProps({ confirmLoading: true });
          // TODO custom api
          //console.log(values, 12);
          const apiAction = SaveUserGroup(values, unref(isUpdate),);
          apiAction.then((action) => {
            //console.log(action, 13);
            if (action.IsSuccessed) {
              closeModal();
              emit('success');
            }
          });
        } finally {
          setModalProps({ confirmLoading: false });
        }
      }
 
      return { registerModal, registerForm, getTitle, handleSubmit };
    },
  });
</script>