2025-08-07 14:40:39 +08:00
|
|
|
<template>
|
|
|
|
|
<div class="app-container">
|
|
|
|
|
<el-form :model="queryParams" ref="queryRef" :inline="true" v-show="showSearch" label-width="68px">
|
|
|
|
|
<el-form-item label="汇总名称" prop="summaryName">
|
|
|
|
|
<el-input
|
|
|
|
|
v-model="queryParams.summaryName"
|
|
|
|
|
placeholder="请输入汇总名称"
|
|
|
|
|
clearable
|
|
|
|
|
@keyup.enter="handleQuery"
|
|
|
|
|
@blur="handleQuery"
|
|
|
|
|
/>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-form>
|
|
|
|
|
|
|
|
|
|
<el-row :gutter="10" class="mb8">
|
|
|
|
|
<el-col :span="1.5">
|
|
|
|
|
<el-button
|
|
|
|
|
type="primary"
|
|
|
|
|
plain
|
|
|
|
|
icon="Plus"
|
|
|
|
|
@click="handleAdd"
|
|
|
|
|
>新增</el-button>
|
|
|
|
|
</el-col>
|
|
|
|
|
<right-toolbar v-model:showSearch="showSearch" @queryTable="getList"></right-toolbar>
|
|
|
|
|
</el-row>
|
|
|
|
|
|
|
|
|
|
<el-table v-loading="loading" :data="attendanceSummaryList" @selection-change="handleSelectionChange">
|
|
|
|
|
<el-table-column type="selection" width="55" align="center" />
|
|
|
|
|
<el-table-column label="汇总主表ID" align="center" prop="summaryId" v-if="false"/>
|
|
|
|
|
<el-table-column label="汇总名称" align="center" prop="summaryName" />
|
2025-08-08 10:25:18 +08:00
|
|
|
<el-table-column label="汇总开始日期" align="center" width="180">
|
|
|
|
|
<template #default="{ row }">
|
|
|
|
|
{{ formatDate(row.startDate) }}
|
2025-08-07 14:40:39 +08:00
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
2025-08-08 10:25:18 +08:00
|
|
|
<el-table-column label="汇总结束日期" align="center" width="180">
|
|
|
|
|
<template #default="{ row }">
|
|
|
|
|
{{ formatDate(row.endDate) }}
|
2025-08-07 14:40:39 +08:00
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column label="备注" align="center" prop="remark" />
|
|
|
|
|
<el-table-column label="操作" align="center" class-name="small-padding fixed-width">
|
|
|
|
|
<template #default="scope">
|
|
|
|
|
<el-button link type="primary" icon="Edit" @click="handleDetail(scope.row)">查看详情</el-button>
|
|
|
|
|
<el-button link type="primary" icon="Delete" @click="handleDelete(scope.row)">删除</el-button>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
</el-table>
|
|
|
|
|
|
|
|
|
|
<pagination
|
|
|
|
|
v-show="total>0"
|
|
|
|
|
:total="total"
|
|
|
|
|
v-model:page="queryParams.pageNum"
|
|
|
|
|
v-model:limit="queryParams.pageSize"
|
|
|
|
|
@pagination="getList"
|
|
|
|
|
/>
|
|
|
|
|
|
|
|
|
|
<!-- 添加或修改考勤汇总对话框 -->
|
|
|
|
|
<el-dialog :title="title" v-model="open" width="500px" append-to-body>
|
|
|
|
|
<el-form ref="attendanceSummaryRef" :model="form" :rules="rules" label-width="100px">
|
|
|
|
|
<el-form-item label="汇总名称" prop="summaryName">
|
|
|
|
|
<el-input v-model="form.summaryName" placeholder="请输入汇总名称" />
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="开始日期" prop="startDate">
|
|
|
|
|
<el-date-picker clearable
|
|
|
|
|
v-model="form.startDate"
|
|
|
|
|
type="date"
|
|
|
|
|
value-format="YYYY-MM-DD"
|
|
|
|
|
placeholder="请选择汇总开始日期">
|
|
|
|
|
</el-date-picker>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="结束日期" prop="endDate">
|
|
|
|
|
<el-date-picker clearable
|
|
|
|
|
v-model="form.endDate"
|
|
|
|
|
type="date"
|
|
|
|
|
value-format="YYYY-MM-DD"
|
|
|
|
|
placeholder="请选择汇总结束日期">
|
|
|
|
|
</el-date-picker>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="选择用户" prop="userIds">
|
|
|
|
|
<user-select v-model="form.userIds" multiple />
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="备注" prop="remark">
|
|
|
|
|
<el-input v-model="form.remark" type="textarea" placeholder="请输入内容" />
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-form>
|
|
|
|
|
<template #footer>
|
|
|
|
|
<div class="dialog-footer">
|
|
|
|
|
<el-button :loading="buttonLoading" type="primary" @click="submitForm">确 定</el-button>
|
|
|
|
|
<el-button @click="cancel">取 消</el-button>
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
</el-dialog>
|
|
|
|
|
|
2025-08-08 10:25:18 +08:00
|
|
|
<el-dialog
|
|
|
|
|
:title="title"
|
|
|
|
|
v-model="detailOpen"
|
|
|
|
|
width="500px"
|
|
|
|
|
append-to-body
|
|
|
|
|
:close-on-click-modal="false"
|
|
|
|
|
@closed="handleDetailDialogClosed"
|
|
|
|
|
>
|
|
|
|
|
<snapshot-detail v-if="detailOpen && currentSummaryId" :summary-id="currentSummaryId" />
|
2025-08-07 14:40:39 +08:00
|
|
|
</el-dialog>
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script setup name="AttendanceSummary">
|
2025-08-08 10:25:18 +08:00
|
|
|
import { listAttendanceSummary, getAttendanceSummary, delAttendanceSummary, addWithDetails, updateAttendanceSummary } from "@/api/oa/attendanceSummary";
|
|
|
|
|
|
2025-08-07 14:40:39 +08:00
|
|
|
import UserSelect from '@/components/UserSelect/index.vue';
|
2025-08-08 10:25:18 +08:00
|
|
|
import snapshotDetail from "./components/snapshotDetail.vue";
|
2025-08-07 14:40:39 +08:00
|
|
|
|
|
|
|
|
const { proxy } = getCurrentInstance();
|
|
|
|
|
|
2025-08-08 10:25:18 +08:00
|
|
|
// 日期格式化方法
|
|
|
|
|
const formatDate = (date) => {
|
|
|
|
|
if (!date) return '';
|
|
|
|
|
return proxy.parseTime(date, '{y}-{m}-{d}');
|
|
|
|
|
};
|
|
|
|
|
|
2025-08-07 14:40:39 +08:00
|
|
|
const attendanceSummaryList = ref([]);
|
|
|
|
|
const userOptions = ref([]); // 用户选项列表
|
|
|
|
|
const open = ref(false);
|
|
|
|
|
const detailOpen = ref(false);
|
2025-08-08 10:25:18 +08:00
|
|
|
const currentSummaryId = ref(null);
|
2025-08-07 14:40:39 +08:00
|
|
|
const buttonLoading = ref(false);
|
2025-08-08 10:25:18 +08:00
|
|
|
|
|
|
|
|
// 处理详情对话框关闭
|
|
|
|
|
const handleDetailDialogClosed = () => {
|
|
|
|
|
currentSummaryId.value = null;
|
|
|
|
|
};
|
2025-08-07 14:40:39 +08:00
|
|
|
const loading = ref(true);
|
|
|
|
|
const showSearch = ref(true);
|
|
|
|
|
const ids = ref([]);
|
|
|
|
|
const single = ref(true);
|
|
|
|
|
const multiple = ref(true);
|
|
|
|
|
const total = ref(0);
|
|
|
|
|
const title = ref("");
|
|
|
|
|
|
|
|
|
|
const data = reactive({
|
|
|
|
|
form: {},
|
|
|
|
|
queryParams: {
|
|
|
|
|
pageNum: 1,
|
|
|
|
|
pageSize: 10,
|
|
|
|
|
summaryName: undefined,
|
|
|
|
|
startDate: undefined,
|
|
|
|
|
endDate: undefined,
|
|
|
|
|
},
|
|
|
|
|
rules: {
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
const { queryParams, form, rules } = toRefs(data);
|
|
|
|
|
|
|
|
|
|
/** 查询考勤汇总列表 */
|
|
|
|
|
function getList() {
|
|
|
|
|
loading.value = true;
|
|
|
|
|
listAttendanceSummary(queryParams.value).then(response => {
|
|
|
|
|
attendanceSummaryList.value = response.rows;
|
|
|
|
|
total.value = response.total;
|
|
|
|
|
loading.value = false;
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 取消按钮
|
|
|
|
|
function cancel() {
|
|
|
|
|
open.value = false;
|
|
|
|
|
reset();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 表单重置
|
|
|
|
|
function reset() {
|
|
|
|
|
form.value = {
|
|
|
|
|
summaryId: null,
|
|
|
|
|
summaryName: null,
|
|
|
|
|
startDate: null,
|
|
|
|
|
endDate: null,
|
|
|
|
|
createTime: null,
|
|
|
|
|
createBy: null,
|
|
|
|
|
updateTime: null,
|
|
|
|
|
updateBy: null,
|
|
|
|
|
delFlag: null,
|
|
|
|
|
remark: null,
|
|
|
|
|
userIds: []
|
|
|
|
|
};
|
|
|
|
|
proxy.resetForm("attendanceSummaryRef");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/** 搜索按钮操作 */
|
|
|
|
|
function handleQuery() {
|
|
|
|
|
queryParams.value.pageNum = 1;
|
|
|
|
|
getList();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 多选框选中数据
|
|
|
|
|
function handleSelectionChange(selection) {
|
|
|
|
|
ids.value = selection.map(item => item.summaryId);
|
|
|
|
|
single.value = selection.length != 1;
|
|
|
|
|
multiple.value = !selection.length;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/** 新增按钮操作 */
|
|
|
|
|
function handleAdd() {
|
|
|
|
|
reset();
|
|
|
|
|
open.value = true;
|
|
|
|
|
title.value = "添加考勤汇总";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/** 修改按钮操作 */
|
|
|
|
|
function handleUpdate(row) {
|
|
|
|
|
loading.value = true
|
|
|
|
|
reset();
|
|
|
|
|
const _summaryId = row.summaryId || ids.value
|
|
|
|
|
getAttendanceSummary(_summaryId).then(response => {
|
|
|
|
|
loading.value = false;
|
|
|
|
|
form.value = response.data;
|
|
|
|
|
open.value = true;
|
|
|
|
|
title.value = "修改考勤汇总";
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function handleDetail(row) {
|
2025-08-08 10:25:18 +08:00
|
|
|
if (!row || !row.summaryId) {
|
|
|
|
|
proxy.$modal.msgError("无效的记录");
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
currentSummaryId.value = row.summaryId;
|
|
|
|
|
title.value = "考勤汇总详情";
|
|
|
|
|
detailOpen.value = true;
|
2025-08-07 14:40:39 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/** 提交按钮 */
|
|
|
|
|
function submitForm() {
|
|
|
|
|
proxy.$refs["attendanceSummaryRef"].validate(valid => {
|
|
|
|
|
if (valid) {
|
|
|
|
|
buttonLoading.value = true;
|
|
|
|
|
if (form.value.summaryId != null) {
|
|
|
|
|
updateAttendanceSummary(form.value).then(response => {
|
|
|
|
|
proxy.$modal.msgSuccess("修改成功");
|
|
|
|
|
open.value = false;
|
|
|
|
|
getList();
|
|
|
|
|
}).finally(() => {
|
|
|
|
|
buttonLoading.value = false;
|
|
|
|
|
});
|
|
|
|
|
} else {
|
2025-08-08 10:25:18 +08:00
|
|
|
addWithDetails({
|
|
|
|
|
...form.value,
|
|
|
|
|
startDate: form.value.startDate + ' 00:00:00',
|
|
|
|
|
endDate: form.value.endDate + ' 23:59:59'
|
|
|
|
|
}).then(response => {
|
2025-08-07 14:40:39 +08:00
|
|
|
proxy.$modal.msgSuccess("新增成功");
|
|
|
|
|
open.value = false;
|
|
|
|
|
getList();
|
|
|
|
|
}).finally(() => {
|
|
|
|
|
buttonLoading.value = false;
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/** 删除按钮操作 */
|
|
|
|
|
function handleDelete(row) {
|
|
|
|
|
const _summaryIds = row.summaryId || ids.value;
|
|
|
|
|
proxy.$modal.confirm('是否确认删除考勤汇总编号为"' + _summaryIds + '"的数据项?').then(function() {
|
|
|
|
|
loading.value = true;
|
|
|
|
|
return delAttendanceSummary(_summaryIds);
|
|
|
|
|
}).then(() => {
|
|
|
|
|
loading.value = true;
|
|
|
|
|
getList();
|
|
|
|
|
proxy.$modal.msgSuccess("删除成功");
|
|
|
|
|
}).catch(() => {
|
|
|
|
|
}).finally(() => {
|
|
|
|
|
loading.value = false;
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
getList();
|
|
|
|
|
</script>
|