vue-vben-admin/src/views/demo/system/account/AccountModal.vue

72 lines
2.0 KiB
Vue
Raw Normal View History

2021-03-01 00:56:25 +08:00
<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';
import { getDeptList } from '/@/api/demo/system';
2021-03-01 00:56:25 +08:00
export default defineComponent({
name: 'AccountModal',
components: { BasicModal, BasicForm },
emits: ['success', 'register'],
setup(_, { emit }) {
2021-03-01 00:56:25 +08:00
const isUpdate = ref(true);
const [registerForm, { setFieldsValue, updateSchema, resetFields, validate }] = useForm({
2021-03-01 00:56:25 +08:00
labelWidth: 100,
schemas: accountFormSchema,
showActionButtonGroup: false,
actionColOptions: {
span: 23,
},
});
2021-03-05 00:47:14 +08:00
const [registerModal, { setModalProps, closeModal }] = useModalInner(async (data) => {
resetFields();
2021-03-01 22:54:21 +08:00
setModalProps({ confirmLoading: false });
2021-03-01 00:56:25 +08:00
isUpdate.value = !!data?.isUpdate;
if (unref(isUpdate)) {
setFieldsValue({
...data.record,
});
}
const treeData = await getDeptList();
updateSchema([
{
field: 'pwd',
show: !unref(isUpdate),
},
{
field: 'dept',
componentProps: { treeData },
},
]);
2021-03-01 00:56:25 +08:00
});
const getTitle = computed(() => (!unref(isUpdate) ? '新增账号' : '编辑账号'));
async function handleSubmit() {
try {
const values = await validate();
setModalProps({ confirmLoading: true });
// TODO custom api
console.log(values);
2021-03-05 00:47:14 +08:00
closeModal();
emit('success');
2021-03-01 00:56:25 +08:00
} finally {
2021-03-01 22:54:21 +08:00
setModalProps({ confirmLoading: false });
2021-03-01 00:56:25 +08:00
}
}
return { registerModal, registerForm, getTitle, handleSubmit };
},
});
</script>