2024-09-17 16:07:05 +08:00
|
|
|
<script setup lang="ts">
|
|
|
|
import { computed, ref } from 'vue';
|
|
|
|
|
|
|
|
import { useVbenDrawer } from '@vben/common-ui';
|
|
|
|
import { $t } from '@vben/locales';
|
|
|
|
|
|
|
|
import { useVbenForm } from '#/adapter';
|
|
|
|
import { userAdd, userUpdate } from '#/api/system/user';
|
|
|
|
|
|
|
|
import { drawerSchema } from './data';
|
|
|
|
|
|
|
|
const emit = defineEmits<{ reload: [] }>();
|
|
|
|
|
|
|
|
const isUpdate = ref(false);
|
|
|
|
const title = computed(() => {
|
|
|
|
return isUpdate.value ? $t('pages.common.edit') : $t('pages.common.add');
|
|
|
|
});
|
|
|
|
|
|
|
|
const [BasicForm, formApi] = useVbenForm({
|
|
|
|
commonConfig: {
|
|
|
|
formItemClass: 'col-span-2',
|
|
|
|
labelWidth: 80,
|
|
|
|
},
|
|
|
|
schema: drawerSchema(),
|
|
|
|
showDefaultActions: false,
|
|
|
|
wrapperClass: 'grid-cols-2',
|
|
|
|
});
|
|
|
|
|
|
|
|
interface DrawerProps {
|
|
|
|
update: boolean;
|
|
|
|
record: any;
|
|
|
|
}
|
|
|
|
|
|
|
|
const [BasicDrawer, drawerApi] = useVbenDrawer({
|
|
|
|
onCancel: handleCancel,
|
|
|
|
onConfirm: handleConfirm,
|
|
|
|
async onOpenChange(isOpen) {
|
|
|
|
if (!isOpen) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
drawerApi.drawerLoading(true);
|
|
|
|
const { record, update } = drawerApi.getData() as DrawerProps;
|
|
|
|
isUpdate.value = update;
|
|
|
|
// 更新 && 赋值
|
|
|
|
if (update && record) {
|
|
|
|
for (const key in record) {
|
|
|
|
await formApi.setFieldValue(key, record[key]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
drawerApi.drawerLoading(false);
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
async function handleConfirm() {
|
|
|
|
try {
|
|
|
|
drawerApi.drawerLoading(true);
|
|
|
|
const { valid } = await formApi.validate();
|
|
|
|
if (!valid) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
const data = await formApi.getValues();
|
|
|
|
console.log(data);
|
|
|
|
await (isUpdate.value ? userUpdate(data) : userAdd(data));
|
|
|
|
emit('reload');
|
|
|
|
await handleCancel();
|
|
|
|
} catch (error) {
|
|
|
|
console.error(error);
|
|
|
|
} finally {
|
|
|
|
drawerApi.drawerLoading(false);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
async function handleCancel() {
|
|
|
|
drawerApi.close();
|
|
|
|
await formApi.resetForm();
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
2024-09-18 15:38:57 +08:00
|
|
|
<BasicDrawer :close-on-click-modal="false" :title="title" class="w-[600px]">
|
2024-09-17 16:07:05 +08:00
|
|
|
<BasicForm />
|
|
|
|
未完成
|
|
|
|
</BasicDrawer>
|
|
|
|
</template>
|