Files
admin-vben5/apps/web-antd/src/views/property/attendanceManagement/attendanceGroupSettings/group-modal.vue

339 lines
10 KiB
Vue
Raw Normal View History

2025-07-19 17:25:17 +08:00
<script setup lang="ts">
import {computed, ref} from 'vue';
import {useVbenModal} from '@vben/common-ui';
import {$t} from '@vben/locales';
import {cloneDeep} from '@vben/utils';
import {useVbenForm} from '#/adapter/form';
import {
groupAdd,
groupInfo,
groupUpdate
} from '#/api/property/attendanceManagement/attendanceGroupSettings';
import {defaultFormValueGetter, useBeforeCloseDiff} from '#/utils/popup';
2025-07-20 17:58:39 +08:00
import {
clockingColumns,
cycleColumns,
modalSchema,
noClockingColumns,
weekdayColumns
} from './data';
import {Tag, Button, Table, Checkbox} from 'ant-design-vue'
2025-07-19 17:25:17 +08:00
import {getDictOptions} from "#/utils/dict";
2025-07-20 17:58:39 +08:00
import holidayCalendar from './holiday-calendar.vue'
2025-07-21 20:57:31 +08:00
import changeShiftSchedule from './change-shift-schedule.vue'
import checkInDate from './check-in-date.vue'
import {h} from 'vue';
import {PlusOutlined, MinusOutlined} from '@ant-design/icons-vue';
import type {ShiftVO} from "#/api/property/attendanceManagement/shiftSetting/model";
2025-07-19 17:25:17 +08:00
const emit = defineEmits<{ reload: [] }>();
const isUpdate = ref(false);
const weekdayData = ref<any[]>([])
const title = computed(() => {
return isUpdate.value ? $t('pages.common.edit') : $t('pages.common.add');
});
2025-07-20 17:58:39 +08:00
const settingData = ref<any>({
isAutomatic: true,
})
2025-07-19 17:25:17 +08:00
const [BasicForm, formApi] = useVbenForm({
commonConfig: {
// 默认占满两列
formItemClass: 'col-span-2',
// 默认label宽度 px
labelWidth: 80,
// 通用配置项 会影响到所有表单项
componentProps: {
class: 'w-full',
}
},
schema: modalSchema(),
showDefaultActions: false,
wrapperClass: 'grid-cols-2',
});
const {onBeforeClose, markInitialized, resetInitialized} = useBeforeCloseDiff(
{
initializedGetter: defaultFormValueGetter(formApi),
currentGetter: defaultFormValueGetter(formApi),
},
);
const [BasicModal, modalApi] = useVbenModal({
fullscreenButton: false,
2025-07-21 20:57:31 +08:00
fullscreen: true,
// class:'w-[80%]',
2025-07-19 17:25:17 +08:00
onBeforeClose,
onClosed: handleClosed,
onConfirm: handleConfirm,
onOpenChange: async (isOpen) => {
if (!isOpen) {
return null;
}
modalApi.modalLoading(true);
const {id} = modalApi.getData() as { id?: number | string };
isUpdate.value = !!id;
if (isUpdate.value && id) {
const record = await groupInfo(id);
await formApi.setValues(record);
2025-07-20 17:58:39 +08:00
} else {
weekdayData.value = []
getDictOptions('wy_kqgzr').forEach(item => {
weekdayData.value.push({
dayOfWeek: item.value,
label: item.label,
shift: item.value == '6' || item.value == '7' ? '休息' : '常规班次08:00:00~12:00:00 14:00:00~17:00:00'
})
2025-07-19 17:25:17 +08:00
})
}
await markInitialized();
modalApi.modalLoading(false);
},
});
async function handleConfirm() {
try {
modalApi.lock(true);
const {valid} = await formApi.validate();
if (!valid) {
return;
}
// getValues获取为一个readonly的对象 需要修改必须先深拷贝一次
const data = cloneDeep(await formApi.getValues());
await (isUpdate.value ? groupUpdate(data) : groupAdd(data));
resetInitialized();
emit('reload');
modalApi.close();
} catch (error) {
console.error(error);
} finally {
modalApi.lock(false);
}
}
async function handleClosed() {
await formApi.resetForm();
resetInitialized();
}
2025-07-20 17:58:39 +08:00
const [HolidayCalendar, holidayApi] = useVbenModal({
connectedComponent: holidayCalendar,
});
2025-07-21 20:57:31 +08:00
const [ChangeShiftSchedule, shiftApi] = useVbenModal({
connectedComponent: changeShiftSchedule,
});
const [CheckInDate, checkInDateApi] = useVbenModal({
connectedComponent: checkInDate,
});
2025-07-20 17:58:39 +08:00
/**
* 查看法定节假日日历
*/
async function showHoliday() {
holidayApi.open()
}
2025-07-21 20:57:31 +08:00
/**
* 更改班次
* @param type 1.设置班次 2.选择班次
*/
async function shiftScheduleHandle(type) {
await shiftApi.open()
await shiftApi.setData({type})
}
async function changeShiftHandle(type, index) {
await shiftApi.open()
await shiftApi.setData({type})//3.更改班次
}
async function selectDateHandle(type) {
checkInDateApi.open()
checkInDateApi.setData({type})
}
const shiftInfo = ref<ShiftVO>()
const shiftList = ref<ShiftVO[]>([])
const handleShiftInfo = (info) => {
shiftInfo.value = info;
};
const handleShiftList = (list) => {
shiftList.value = list;
};
const handleAfterValue = (val) => {
console.log(val, '===val')
};
const cycleData = ref<any[]>([])
const unCheckInData = ref<any[]>([])
const checkInData = ref<any[]>([])
async function addCycleHandle() {
cycleData.value.push({
shiftId: '',
})
}
async function deleteCycleHandle(index) {
cycleData.value.splice(index, 1)
}
async function deleteUnCheckInHandle(index) {
unCheckInData.value.splice(index, 1)
}
async function deleteCheckInHandle(index) {
checkInData.value.splice(index, 1)
}
async function restHandle(index){
}
2025-07-19 17:25:17 +08:00
</script>
<template>
2025-07-21 20:57:31 +08:00
<BasicModal :title="title+'考勤组'">
2025-07-19 17:25:17 +08:00
<BasicForm>
<template #weekdaySetting>
2025-07-20 17:58:39 +08:00
<div class="item-font">
2025-07-19 17:25:17 +08:00
<span>快捷设置班次</span>
2025-07-21 20:57:31 +08:00
<Tag color="processing" v-if="shiftInfo">
<span>{{ shiftInfo.name }}</span>&nbsp;
<span v-if="shiftInfo.isRest">
{{ shiftInfo.startTime + '~' + shiftInfo.restStartTime }}&nbsp;
{{ shiftInfo.restEndTime + '~' + shiftInfo.endTime }}
</span>
<span v-else>
{{ shiftInfo.startTime + '~' + shiftInfo.endTime }}
</span>
</Tag>
<Button type="link" @click="shiftScheduleHandle(1)">设置班次</Button>
2025-07-19 17:25:17 +08:00
</div>
</template>
<template #settingItem>
2025-07-20 17:58:39 +08:00
<div class="item-font" style="width: 100%;">
2025-07-21 20:57:31 +08:00
<Table style="width: 90%" bordered :columns="weekdayColumns" :data-source="weekdayData"
2025-07-20 17:58:39 +08:00
size="small" :pagination="false">
2025-07-21 20:57:31 +08:00
<template #bodyCell="{ column, record,index }">
<template v-if="column.dataIndex==='action'">
<Button type="link" size="small" @click="changeShiftHandle(3)">更改班次</Button>
<Button type="link" size="small" @click="restHandle(index)">休息</Button>
</template>
</template>
2025-07-20 17:58:39 +08:00
</Table>
<Checkbox class="item-padding-top" v-model:checked="settingData.isAutomatic">
法定节假日自动排休
</Checkbox>
<Button type="link" @click="showHoliday">查看法定节假日日历</Button>
<p class="item-padding-top item-font-weight">特殊日期</p>
<p class="item-padding">无需打卡日期</p>
2025-07-21 20:57:31 +08:00
<Table style="width: 75%" bordered :columns="noClockingColumns"
:data-source="unCheckInData"
2025-07-20 17:58:39 +08:00
size="small" :pagination="false">
2025-07-21 20:57:31 +08:00
<template #headerCell="{ column }">
<template v-if="column.dataIndex === 'action'">
<Button size="small" type="primary" shape="circle"
@click="selectDateHandle"
:icon="h(PlusOutlined)">
</Button>
</template>
</template>
<template #bodyCell="{ column, record,index }">
<template v-if="column.dataIndex==='action'">
<Button size="small" type="primary" shape="circle"
danger :icon="h(MinusOutlined)" @click="deleteUnCheckInHandle(index)">
</Button>
</template>
</template>
2025-07-20 17:58:39 +08:00
</Table>
<p class="item-padding">必须打卡日期</p>
2025-07-21 20:57:31 +08:00
<Table style="width: 75%" bordered :columns="clockingColumns" :data-source="checkInData"
2025-07-20 17:58:39 +08:00
size="small" :pagination="false">
2025-07-21 20:57:31 +08:00
<template #headerCell="{ column }">
<template v-if="column.dataIndex === 'action'">
<Button size="small" type="primary" shape="circle"
@click="selectDateHandle"
:icon="h(PlusOutlined)">
</Button>
</template>
</template>
<template #bodyCell="{ column, record,index }">
<template v-if="column.dataIndex==='action'">
<Button size="small" type="primary" shape="circle"
danger :icon="h(MinusOutlined)" @click="deleteCheckInHandle(index)">
</Button>
</template>
</template>
2025-07-20 17:58:39 +08:00
</Table>
</div>
2025-07-19 17:25:17 +08:00
</template>
<template #attendanceShift>
2025-07-21 20:57:31 +08:00
<Button size="small" @click="shiftScheduleHandle(2)" type="primary">选择班次</Button>
2025-07-20 17:58:39 +08:00
</template>
<template #shiftData>
2025-07-21 20:57:31 +08:00
<div v-if="shiftList">
<Tag closable color="processing" v-for="(item,index) in shiftList">
{{ item.name }}
</Tag>
</div>
2025-07-19 17:25:17 +08:00
</template>
<template #schedulingCycle>
2025-07-21 20:57:31 +08:00
<span class="item-font">周期天数
<span style="font-weight: 500;color: red">{{ cycleData.length }}</span>
</span>
2025-07-20 17:58:39 +08:00
</template>
<template #cycleData>
2025-07-21 20:57:31 +08:00
<Table style="width: 80%" bordered :columns="cycleColumns" :data-source="cycleData"
2025-07-20 17:58:39 +08:00
size="small" :pagination="false">
2025-07-21 20:57:31 +08:00
<template #headerCell="{ column }">
<template v-if="column.dataIndex === 'action'">
<Button size="small" type="primary" shape="circle"
:icon="h(PlusOutlined)" @click="addCycleHandle">
</Button>
</template>
</template>
<template #bodyCell="{ column, record,index }">
<template v-if="column.dataIndex==='action'">
<Button size="small" type="primary" shape="circle"
danger :icon="h(MinusOutlined)" @click="deleteCycleHandle(index)">
</Button>
</template>
</template>
2025-07-20 17:58:39 +08:00
</Table>
2025-07-19 17:25:17 +08:00
</template>
</BasicForm>
2025-07-20 17:58:39 +08:00
<HolidayCalendar></HolidayCalendar>
2025-07-21 20:57:31 +08:00
<ChangeShiftSchedule @shiftInfo="handleShiftInfo"
@shiftList="handleShiftList"
@afterValue="handleAfterValue"
></ChangeShiftSchedule>
<CheckInDate></CheckInDate>
2025-07-19 17:25:17 +08:00
</BasicModal>
</template>
2025-07-20 17:58:39 +08:00
<style lang="scss" scoped>
.item-font {
font-size: 0.875rem;
}
.item-font-weight {
font-weight: 500;
}
.item-padding-top {
padding-top: 1.1rem;
}
.item-padding {
padding: 1.1rem 0 0.5rem 0;
}
</style>
2025-07-19 17:25:17 +08:00