Vben
authored
|
1
2
3
4
5
6
7
8
9
10
|
<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 { accountFormSchema } from './account.data';
|
Vben
authored
|
11
12
|
import { getDeptList } from '/@/api/demo/system';
|
Vben
authored
|
13
14
15
|
export default defineComponent({
name: 'AccountModal',
components: { BasicModal, BasicForm },
|
Vben
authored
|
16
17
|
emits: ['success', 'register'],
setup(_, { emit }) {
|
Vben
authored
|
18
|
const isUpdate = ref(true);
|
|
19
|
const rowId = ref('');
|
Vben
authored
|
20
|
|
Vben
authored
|
21
|
const [registerForm, { setFieldsValue, updateSchema, resetFields, validate }] = useForm({
|
Vben
authored
|
22
|
labelWidth: 100,
|
|
23
|
baseColProps: { span: 24 },
|
Vben
authored
|
24
25
26
27
28
29
30
|
schemas: accountFormSchema,
showActionButtonGroup: false,
actionColOptions: {
span: 23,
},
});
|
Vben
authored
|
31
|
const [registerModal, { setModalProps, closeModal }] = useModalInner(async (data) => {
|
Vben
authored
|
32
|
resetFields();
|
Vben
authored
|
33
|
setModalProps({ confirmLoading: false });
|
Vben
authored
|
34
35
36
|
isUpdate.value = !!data?.isUpdate;
if (unref(isUpdate)) {
|
|
37
|
rowId.value = data.record.id;
|
Vben
authored
|
38
39
40
41
|
setFieldsValue({
...data.record,
});
}
|
Vben
authored
|
42
43
44
45
46
47
48
49
50
51
52
53
|
const treeData = await getDeptList();
updateSchema([
{
field: 'pwd',
show: !unref(isUpdate),
},
{
field: 'dept',
componentProps: { treeData },
},
]);
|
Vben
authored
|
54
55
56
57
58
59
60
61
62
63
|
});
const getTitle = computed(() => (!unref(isUpdate) ? '新增账号' : '编辑账号'));
async function handleSubmit() {
try {
const values = await validate();
setModalProps({ confirmLoading: true });
// TODO custom api
console.log(values);
|
Vben
authored
|
64
|
closeModal();
|
|
65
|
emit('success', { isUpdate: unref(isUpdate), values: { ...values, id: rowId.value } });
|
Vben
authored
|
66
|
} finally {
|
Vben
authored
|
67
|
setModalProps({ confirmLoading: false });
|
Vben
authored
|
68
69
70
71
72
73
74
|
}
}
return { registerModal, registerForm, getTitle, handleSubmit };
},
});
</script>
|