83 lines
1.9 KiB
Vue
83 lines
1.9 KiB
Vue
|
<script setup lang="ts">
|
||
|
import { computed, ref } from 'vue';
|
||
|
import { useVbenModal } from '@vben/common-ui';
|
||
|
import { cloneDeep } from '@vben/utils';
|
||
|
import { useVbenForm } from '#/adapter/form';
|
||
|
import { defaultFormValueGetter, useBeforeCloseDiff } from '#/utils/popup';
|
||
|
import {clockInModalSchema} from './data';
|
||
|
|
||
|
const emit = defineEmits<{ reload: [] }>();
|
||
|
const isClockIn = ref(false);
|
||
|
|
||
|
const title = computed(() => {
|
||
|
return isClockIn.value ? '必须打卡日期' : '无需打卡日期';
|
||
|
});
|
||
|
|
||
|
const [BasicForm, formApi] = useVbenForm({
|
||
|
commonConfig: {
|
||
|
formItemClass: 'col-span-2',
|
||
|
labelWidth: 100,
|
||
|
componentProps: {
|
||
|
class: 'w-full',
|
||
|
}
|
||
|
},
|
||
|
schema: clockInModalSchema(),
|
||
|
showDefaultActions: false,
|
||
|
wrapperClass: 'grid-cols-2',
|
||
|
});
|
||
|
|
||
|
const { onBeforeClose, markInitialized, resetInitialized } = useBeforeCloseDiff(
|
||
|
{
|
||
|
initializedGetter: defaultFormValueGetter(formApi),
|
||
|
currentGetter: defaultFormValueGetter(formApi),
|
||
|
},
|
||
|
);
|
||
|
|
||
|
const [BasicModal, modalApi] = useVbenModal({
|
||
|
class: 'w-[550px]',
|
||
|
fullscreenButton: false,
|
||
|
onBeforeClose,
|
||
|
onClosed: handleClosed,
|
||
|
onConfirm: handleConfirm,
|
||
|
onOpenChange: async (isOpen) => {
|
||
|
if (!isOpen) {
|
||
|
return null;
|
||
|
}
|
||
|
modalApi.modalLoading(true);
|
||
|
const { type } = modalApi.getData() as { type?: number };
|
||
|
isClockIn.value = !!type;
|
||
|
await markInitialized();
|
||
|
modalApi.modalLoading(false);
|
||
|
},
|
||
|
});
|
||
|
|
||
|
async function handleConfirm() {
|
||
|
try {
|
||
|
modalApi.lock(true);
|
||
|
const { valid } = await formApi.validate();
|
||
|
if (!valid) {
|
||
|
return;
|
||
|
}
|
||
|
const data = cloneDeep(await formApi.getValues());
|
||
|
resetInitialized();
|
||
|
await modalApi.close();
|
||
|
} catch (error) {
|
||
|
console.error(error);
|
||
|
} finally {
|
||
|
modalApi.lock(false);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
async function handleClosed() {
|
||
|
await formApi.resetForm();
|
||
|
resetInitialized();
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<template>
|
||
|
<BasicModal :title="title">
|
||
|
<BasicForm/>
|
||
|
</BasicModal>
|
||
|
</template>
|
||
|
|