<!--OA模块:加班申请-->
|
<template>
|
<div class="app-container">
|
<div class="search_form mb20">
|
<div>
|
<span class="search_title">申请人:</span>
|
<el-input
|
v-model="searchForm.applicantKeyword"
|
style="width: 220px"
|
placeholder="姓名或编号"
|
clearable
|
:prefix-icon="Search"
|
@keyup.enter="handleQuery"
|
/>
|
<span class="search_title" style="margin-left: 12px">加班类型:</span>
|
<el-select v-model="searchForm.overtimeType" placeholder="全部" clearable style="width: 180px">
|
<el-option v-for="opt in OVERTIME_TYPE_OPTIONS" :key="opt.value" :label="opt.label" :value="opt.value" />
|
</el-select>
|
<el-button type="primary" style="margin-left: 10px" @click="handleQuery">搜索</el-button>
|
<el-button @click="resetSearch">重置</el-button>
|
</div>
|
<div class="search_actions">
|
<el-button type="success" plain @click="handleImportClick">导入</el-button>
|
<el-button type="warning" plain @click="handleExport">导出</el-button>
|
<el-button type="primary" @click="openAddWithTemplate">新增加班申请</el-button>
|
</div>
|
</div>
|
<input ref="importInputRef" type="file" accept="application/json,.json" class="sr-only-input" @change="onImportFile" />
|
|
<div class="table_list">
|
<PIMTable
|
rowKey="id"
|
:column="tableColumn"
|
:tableData="tableData"
|
:page="page"
|
:isSelection="false"
|
:tableLoading="tableLoading"
|
@pagination="pagination"
|
:total="page.total"
|
/>
|
</div>
|
|
<!-- 新增 / 编辑 -->
|
<el-dialog
|
v-if="formDialog.visible"
|
v-model="formDialog.visible"
|
:title="formDialog.title"
|
width="960px"
|
append-to-body
|
destroy-on-close
|
class="overtime-apply-form-dialog"
|
@closed="onFormClosed"
|
>
|
<el-form ref="formRef" :model="form" :rules="formRules" label-width="140px" class="overtime-apply-form">
|
<el-form-item v-if="form.templateSnapshot" label="审批模板">
|
<span class="template-name">{{ form.templateSnapshot.label || form.templateName }}</span>
|
<el-button
|
v-if="formDialog.mode === 'add'"
|
type="primary"
|
link
|
class="ml12"
|
@click="reopenTemplateBind"
|
>
|
更换模板
|
</el-button>
|
</el-form-item>
|
|
<FormPayloadFields :fields="templateDisplayFields" :form-payload="form.formPayload" />
|
<el-row :gutter="24">
|
<el-col :span="12">
|
<el-form-item label="加班时长">
|
<el-input :model-value="overtimeHoursDisplay" readonly placeholder="根据模板中加班时间自动计算">
|
<template #append>小时</template>
|
</el-input>
|
</el-form-item>
|
</el-col>
|
</el-row>
|
<ApprovalTemplateFormSection
|
:active-template="form.templateSnapshot"
|
:fields="form.formFieldDefs"
|
:form-payload="form.formPayload"
|
v-model:flow-nodes="form.flowNodes"
|
v-model:attachments="form.storageBlobDTOs"
|
:template-attachments="form.templateAttachments"
|
:user-options="flowUserOptions"
|
flow-attachments-only
|
hide-template-name
|
:allow-change-template="false"
|
/>
|
</el-form>
|
<template #footer>
|
<div class="dialog-footer">
|
<el-button type="primary" @click="submitForm">确 定</el-button>
|
<el-button @click="formDialog.visible = false">取 消</el-button>
|
</div>
|
</template>
|
</el-dialog>
|
|
<ApprovalTemplateBindDialog
|
v-model:visible="templateBindVisible"
|
:module-key="APPROVAL_MODULE_KEYS.OVERTIME"
|
skip-form-confirm
|
@confirm="onTemplateBound"
|
@closed="onTemplateBindClosed"
|
/>
|
|
<!-- 详情 -->
|
<el-dialog v-model="detailDialog.visible" title="加班申请详情" width="720px" append-to-body>
|
<el-descriptions :column="1" border>
|
<el-descriptions-item label="申请人编号">{{ detailRow.applicantNo || "—" }}</el-descriptions-item>
|
<el-descriptions-item label="申请人">{{ detailRow.applicantName }}</el-descriptions-item>
|
<el-descriptions-item label="加班类型">{{ overtimeTypeLabel(detailRow.overtimeType) }}</el-descriptions-item>
|
<el-descriptions-item label="加班日期">{{ detailRow.overtimeDate || "—" }}</el-descriptions-item>
|
<el-descriptions-item label="加班开始日期">{{ detailRow.overtimeStartTime || "—" }}</el-descriptions-item>
|
<el-descriptions-item label="加班结束日期">{{ detailRow.overtimeEndTime || "—" }}</el-descriptions-item>
|
<el-descriptions-item label="加班时长">{{ formatHours(detailRow.overtimeHours) }}</el-descriptions-item>
|
<el-descriptions-item label="加班事由">{{ detailRow.overtimeReason }}</el-descriptions-item>
|
<el-descriptions-item label="审批流程">
|
<template v-if="detailFlowSteps(detailRow).length">
|
<div class="detail-flow-chain">
|
<template v-for="(step, i) in detailFlowSteps(detailRow)" :key="i">
|
<span class="detail-flow-step">{{ step }}</span>
|
<span v-if="i < detailFlowSteps(detailRow).length - 1" class="detail-flow-sep">→</span>
|
</template>
|
</div>
|
</template>
|
<span v-else>—</span>
|
</el-descriptions-item>
|
<el-descriptions-item label="审批结果">{{ approvalResultLabel(detailRow.approvalResult) }}</el-descriptions-item>
|
<el-descriptions-item label="创建时间">{{ detailRow.createTime || "—" }}</el-descriptions-item>
|
<el-descriptions-item label="附件">
|
<template v-if="rowAttachmentList(detailRow).length">
|
<el-tag v-for="(f, i) in rowAttachmentList(detailRow)" :key="i" class="mr6 mb6" type="info">
|
{{ f.name }}
|
</el-tag>
|
</template>
|
<span v-else>无</span>
|
</el-descriptions-item>
|
</el-descriptions>
|
<template #footer>
|
<div class="dialog-footer">
|
<el-button type="primary" @click="detailDialog.visible = false">关 闭</el-button>
|
</div>
|
</template>
|
</el-dialog>
|
|
<!-- 附件列表 -->
|
<el-dialog v-model="filesDialog.visible" title="附件" width="520px" append-to-body>
|
<el-table v-if="rowAttachmentList(filesDialog.row).length" :data="rowAttachmentList(filesDialog.row)" border>
|
<el-table-column type="index" label="序号" width="60" align="center" />
|
<el-table-column prop="name" label="文件名" min-width="200" show-overflow-tooltip />
|
<el-table-column label="操作" width="100" align="center">
|
<template #default="{ row }">
|
<el-button link type="primary" @click="mockDownload(row)">下载</el-button>
|
</template>
|
</el-table-column>
|
</el-table>
|
<el-empty v-else description="暂无附件" />
|
<template #footer>
|
<div class="dialog-footer">
|
<el-button type="primary" @click="filesDialog.visible = false">关 闭</el-button>
|
</div>
|
</template>
|
</el-dialog>
|
</div>
|
</template>
|
|
<script setup>
|
import { Search } from "@element-plus/icons-vue";
|
import dayjs from "dayjs";
|
import { userListNoPageByTenantId } from "@/api/system/user.js";
|
import { computed, getCurrentInstance, nextTick, onMounted, reactive, ref, watch } from "vue";
|
import ApprovalTemplateBindDialog from "../../ApproveManage/approve-shared/components/ApprovalTemplateBindDialog.vue";
|
import ApprovalTemplateFormSection from "../../ApproveManage/approve-shared/components/ApprovalTemplateFormSection.vue";
|
import FormPayloadFields from "../../ApproveManage/approve-list/components/FormPayloadFields.vue";
|
import { APPROVAL_MODULE_KEYS } from "../../ApproveManage/approve-shared/approvalModuleRegistry.js";
|
import {
|
applyBindingToForm,
|
attachmentDisplayName,
|
buildFormPayloadRules,
|
validateTemplateBinding,
|
} from "../../ApproveManage/approve-shared/approvalTemplateBindingUtils.js";
|
import { useFlowUserOptions } from "../../ApproveManage/approve-shared/useFlowUserOptions.js";
|
import { SELECT_OPTION_SOURCE } from "../../ApproveManage/approve-template/selectOptionSource.js";
|
|
/** 加班类型(value 与后端对齐占位) */
|
const OVERTIME_TYPE_OPTIONS = [
|
{ label: "工作日加班", value: "weekday" },
|
{ label: "休息日加班", value: "weekend" },
|
{ label: "法定节假日加班", value: "holiday" },
|
];
|
|
function overtimeTypeLabel(v) {
|
const hit = OVERTIME_TYPE_OPTIONS.find((x) => x.value === v);
|
return hit?.label || "—";
|
}
|
|
const createEmptyForm = () => ({
|
id: undefined,
|
applicantId: "",
|
applicantNo: "",
|
applicantName: "",
|
overtimeType: "",
|
overtimeDate: "",
|
overtimeStartTime: "",
|
overtimeEndTime: "",
|
overtimeHours: null,
|
overtimeReason: "",
|
hasTemplateBinding: false,
|
templateId: "",
|
templateName: "",
|
templateSnapshot: null,
|
formFieldDefs: [],
|
formPayload: {},
|
flowNodes: [],
|
templateAttachments: [],
|
storageBlobDTOs: [],
|
});
|
|
const { proxy } = getCurrentInstance();
|
|
function unwrapArray(payload) {
|
if (Array.isArray(payload)) return payload;
|
if (payload && Array.isArray(payload.data)) return payload.data;
|
if (payload && Array.isArray(payload.rows)) return payload.rows;
|
return [];
|
}
|
|
function userById(id) {
|
if (id == null || id === "") return undefined;
|
return allUsersCache.value.find((u) => String(u.userId ?? u.id) === String(id));
|
}
|
|
function applicantNoFromUser(u) {
|
if (!u) return "";
|
return (
|
u.userName ??
|
u.userCode ??
|
u.jobNumber ??
|
u.workNo ??
|
(u.userId != null ? String(u.userId) : "")
|
);
|
}
|
|
function isOvertimeHoursField(field) {
|
const label = String(field?.label || "");
|
return label.includes("加班时长") || field?.key === "overtimeHours";
|
}
|
|
function findOvertimeTimeTemplateField(fields = []) {
|
return (
|
fields.find((f) => f?.type === "datetimerange" && String(f?.label || "").includes("加班时间")) ||
|
fields.find((f) => f?.type === "datetimerange" && f?.key === "dateRange") ||
|
fields.find((f) => f?.type === "datetimerange") ||
|
null
|
);
|
}
|
|
function findApplicantTemplateField(fields = []) {
|
return (
|
fields.find((f) => String(f?.label || "").includes("申请人")) ||
|
fields.find((f) => f?.type === "select" && f?.optionSource === SELECT_OPTION_SOURCE.USER) ||
|
null
|
);
|
}
|
|
/** 从模板填报项解析加班起止时间 */
|
function resolveOvertimeTimeRange(payload, overtimeTimeField) {
|
if (!overtimeTimeField?.key) return { start: "", end: "" };
|
const val = payload?.[overtimeTimeField.key];
|
if (!Array.isArray(val) || val.length < 2) return { start: "", end: "" };
|
return { start: val[0] || "", end: val[1] || "" };
|
}
|
|
/** 按起止时间计算加班时长(小时,保留两位小数) */
|
function computeOvertimeHours(startStr, endStr) {
|
if (!startStr || !endStr) return null;
|
const t0 = dayjs(startStr);
|
const t1 = dayjs(endStr);
|
if (!t0.isValid() || !t1.isValid() || !t1.isAfter(t0)) return null;
|
const hours = t1.diff(t0, "millisecond") / (60 * 60 * 1000);
|
return Math.round(hours * 100) / 100;
|
}
|
|
function formatHours(v) {
|
if (v == null || v === "") return "—";
|
return `${v} 小时`;
|
}
|
|
function mapStorageBlobsToAttachmentList(blobs) {
|
return (blobs || []).map((f) => ({
|
name: attachmentDisplayName(f),
|
url: f.url || f.downloadURL || f.previewURL || f.previewUrl,
|
}));
|
}
|
|
function rowAttachmentList(row) {
|
if (!row) return [];
|
if (row.attachmentList?.length) return row.attachmentList;
|
return mapStorageBlobsToAttachmentList(row.storageBlobDTOs);
|
}
|
|
function approvalResultLabel(v) {
|
if (v === "approved") return "已通过";
|
if (v === "rejected") return "已驳回";
|
if (v === "cancelled") return "已撤销";
|
return "待审批";
|
}
|
|
function sortedApprovalNodes(row) {
|
const list = row?.approvalFlowNodes;
|
if (!Array.isArray(list) || !list.length) return [];
|
return [...list].sort((a, b) => (a.sortOrder ?? a.nodeOrder ?? 0) - (b.sortOrder ?? b.nodeOrder ?? 0));
|
}
|
|
function approvalNodeLabel(n) {
|
const name = (n.approverName || "").trim();
|
return name || "未选择审批人";
|
}
|
|
/** 详情审批流程:优先模板 flowNodes,兼容旧版 approvalFlowNodes */
|
function detailFlowSteps(row) {
|
const nodes = row?.flowNodes;
|
if (Array.isArray(nodes) && nodes.length) {
|
return [...nodes]
|
.sort((a, b) => (a.nodeOrder ?? 0) - (b.nodeOrder ?? 0))
|
.map((n, i) => {
|
const names = (n.approvers || [])
|
.map((a) => (a.approverName || "").trim())
|
.filter(Boolean)
|
.join("、");
|
return `${i + 1}. ${names || "未选择审批人"}`;
|
});
|
}
|
return sortedApprovalNodes(row).map((n, i) => `${i + 1}. ${approvalNodeLabel(n)}`);
|
}
|
|
function syncApplicantFromUser(uid) {
|
const u = userById(uid);
|
if (u) {
|
form.applicantId = uid != null && uid !== "" ? uid : "";
|
form.applicantName = u.nickName || u.userName || "";
|
form.applicantNo = applicantNoFromUser(u);
|
} else {
|
form.applicantId = "";
|
form.applicantName = "";
|
form.applicantNo = "";
|
}
|
}
|
|
const allUsersCache = ref([]);
|
|
async function loadUserPool() {
|
try {
|
const res = await userListNoPageByTenantId();
|
allUsersCache.value = unwrapArray(res);
|
} catch {
|
allUsersCache.value = [];
|
}
|
}
|
|
const allRows = ref([]);
|
|
const searchForm = reactive({
|
applicantKeyword: "",
|
overtimeType: "",
|
});
|
|
const tableLoading = ref(false);
|
const page = reactive({
|
current: 1,
|
size: 10,
|
total: 0,
|
});
|
|
const filteredList = computed(() => {
|
let list = [...allRows.value];
|
const kw = (searchForm.applicantKeyword || "").trim().toLowerCase();
|
if (kw) {
|
list = list.filter((r) => {
|
const name = (r.applicantName || "").toLowerCase();
|
const no = (r.applicantNo || "").toLowerCase();
|
return name.includes(kw) || no.includes(kw);
|
});
|
}
|
if (searchForm.overtimeType) {
|
list = list.filter((r) => r.overtimeType === searchForm.overtimeType);
|
}
|
return list.sort((a, b) => (String(a.createTime) < String(b.createTime) ? 1 : -1));
|
});
|
|
watch(
|
filteredList,
|
(list) => {
|
page.total = list.length;
|
const maxPage = Math.max(1, Math.ceil(list.length / page.size) || 1);
|
if (page.current > maxPage) {
|
page.current = maxPage;
|
}
|
},
|
{ immediate: true }
|
);
|
|
const tableData = computed(() => {
|
const list = filteredList.value;
|
const start = (page.current - 1) * page.size;
|
return list.slice(start, start + page.size);
|
});
|
|
const tableColumn = ref([
|
{ label: "申请人编号", prop: "applicantNo", width: 120 },
|
{ label: "申请人", prop: "applicantName", minWidth: 100 },
|
{ label: "加班日期", prop: "overtimeDate", width: 120 },
|
{ label: "加班开始日期", prop: "overtimeStartTime", width: 170 },
|
{ label: "加班结束日期", prop: "overtimeEndTime", width: 170 },
|
{
|
label: "加班时长",
|
prop: "overtimeHours",
|
width: 120,
|
formatData: (v) => (v == null || v === "" ? "—" : `${v} 小时`),
|
},
|
{
|
label: "审批结果",
|
prop: "approvalResult",
|
width: 110,
|
dataType: "tag",
|
formatData: (v) => approvalResultLabel(v),
|
formatType: (v) => {
|
if (v === "approved") return "success";
|
if (v === "rejected") return "danger";
|
if (v === "cancelled") return "info";
|
return "warning";
|
},
|
},
|
{ label: "创建时间", prop: "createTime", width: 170 },
|
{
|
dataType: "action",
|
label: "操作",
|
align: "center",
|
fixed: "right",
|
width: 220,
|
operation: [
|
{
|
name: "编辑",
|
type: "text",
|
clickFun: (row) => openFormDialog("edit", row),
|
},
|
{
|
name: "查看详情",
|
type: "text",
|
clickFun: (row) => openDetail(row),
|
},
|
{
|
name: "附件",
|
type: "text",
|
clickFun: (row) => openFiles(row),
|
},
|
],
|
},
|
]);
|
|
const formDialog = reactive({
|
visible: false,
|
title: "",
|
mode: "add",
|
});
|
const formRef = ref();
|
const form = reactive(createEmptyForm());
|
const templateBindVisible = ref(false);
|
const pendingTemplateBinding = ref(null);
|
const { flowUserOptions, loadFlowUsers } = useFlowUserOptions();
|
|
const overtimeTimeTemplateField = computed(() => findOvertimeTimeTemplateField(form.formFieldDefs));
|
const applicantTemplateField = computed(() => findApplicantTemplateField(form.formFieldDefs));
|
|
const templateDisplayFields = computed(() =>
|
(form.formFieldDefs || []).filter((f) => !isOvertimeHoursField(f))
|
);
|
|
const overtimeHoursDisplay = computed(() => {
|
const { start, end } = resolveOvertimeTimeRange(form.formPayload, overtimeTimeTemplateField.value);
|
const h = computeOvertimeHours(start, end);
|
return h == null ? "" : String(h);
|
});
|
|
const formRules = computed(() => buildFormPayloadRules(templateDisplayFields.value));
|
|
watch(
|
() => {
|
const key = applicantTemplateField.value?.key;
|
return key ? form.formPayload[key] : undefined;
|
},
|
async (uid) => {
|
if (!applicantTemplateField.value) return;
|
if (!allUsersCache.value.length) {
|
await loadUserPool();
|
}
|
syncApplicantFromUser(uid);
|
}
|
);
|
|
watch(
|
() => {
|
const key = overtimeTimeTemplateField.value?.key;
|
return key ? form.formPayload[key] : undefined;
|
},
|
() => {
|
const { start, end } = resolveOvertimeTimeRange(form.formPayload, overtimeTimeTemplateField.value);
|
form.overtimeStartTime = start;
|
form.overtimeEndTime = end;
|
form.overtimeHours = computeOvertimeHours(start, end);
|
if (start) {
|
form.overtimeDate = dayjs(start).format("YYYY-MM-DD");
|
}
|
},
|
{ deep: true }
|
);
|
|
const detailDialog = reactive({ visible: false });
|
const detailRow = ref({});
|
|
const filesDialog = reactive({ visible: false, row: null });
|
const importInputRef = ref(null);
|
|
function handleQuery() {
|
page.current = 1;
|
tableLoading.value = true;
|
setTimeout(() => {
|
tableLoading.value = false;
|
}, 150);
|
}
|
|
function resetSearch() {
|
searchForm.applicantKeyword = "";
|
searchForm.overtimeType = "";
|
handleQuery();
|
}
|
|
function pagination(obj) {
|
page.current = obj.page;
|
page.size = obj.limit;
|
}
|
|
function openDetail(row) {
|
detailRow.value = { ...row };
|
detailDialog.visible = true;
|
}
|
|
function openFiles(row) {
|
filesDialog.row = row;
|
filesDialog.visible = true;
|
}
|
|
function mockDownload(row) {
|
const url = row.url || row.downloadURL || row.previewURL || row.previewUrl;
|
if (url) {
|
window.open(url, "_blank");
|
return;
|
}
|
proxy?.$modal?.msgWarning?.("暂无下载地址");
|
}
|
|
function handleExport() {
|
const data = filteredList.value;
|
const blob = new Blob([JSON.stringify(data, null, 2)], { type: "application/json;charset=utf-8" });
|
const url = URL.createObjectURL(blob);
|
const a = document.createElement("a");
|
a.href = url;
|
a.download = `加班申请导出_${dayjs().format("YYYYMMDDHHmmss")}.json`;
|
a.click();
|
URL.revokeObjectURL(url);
|
proxy?.$modal?.msgSuccess?.(`已导出 ${data.length} 条(当前筛选结果,JSON)`);
|
}
|
|
function handleImportClick() {
|
importInputRef.value?.click?.();
|
}
|
|
function normalizeImportedRow(raw, idx) {
|
const id = raw.id != null && String(raw.id).length ? `imp_${String(raw.id)}_${idx}` : `imp_${Date.now()}_${idx}`;
|
const hours =
|
raw.overtimeHours != null && raw.overtimeHours !== ""
|
? Number(raw.overtimeHours)
|
: computeOvertimeHours(raw.overtimeStartTime, raw.overtimeEndTime);
|
return {
|
id,
|
applicantId: raw.applicantId != null ? String(raw.applicantId) : `imp_user_${idx}`,
|
applicantNo: raw.applicantNo ?? "",
|
applicantName: raw.applicantName ?? "未知",
|
overtimeType: raw.overtimeType || "weekday",
|
overtimeDate: raw.overtimeDate ?? "",
|
overtimeStartTime: raw.overtimeStartTime ?? "",
|
overtimeEndTime: raw.overtimeEndTime ?? "",
|
overtimeHours: hours == null || Number.isNaN(hours) ? 0 : Math.round(hours * 100) / 100,
|
overtimeReason: raw.overtimeReason ?? "",
|
hasTemplateBinding: false,
|
approvalFlowNodes: Array.isArray(raw.approvalFlowNodes) && raw.approvalFlowNodes.length
|
? raw.approvalFlowNodes.map((n) => ({ ...n }))
|
: [],
|
approvalResult: raw.approvalResult && ["pending", "approved", "rejected", "cancelled"].includes(raw.approvalResult)
|
? raw.approvalResult
|
: "pending",
|
attachmentList: Array.isArray(raw.attachmentList) ? raw.attachmentList : [],
|
createTime: raw.createTime || dayjs().format("YYYY-MM-DD HH:mm:ss"),
|
};
|
}
|
|
function onImportFile(e) {
|
const input = e.target;
|
const file = input.files?.[0];
|
input.value = "";
|
if (!file) return;
|
const reader = new FileReader();
|
reader.onload = () => {
|
try {
|
const text = String(reader.result || "");
|
const parsed = JSON.parse(text);
|
const arr = Array.isArray(parsed) ? parsed : parsed?.rows || parsed?.data;
|
if (!Array.isArray(arr) || !arr.length) {
|
proxy?.$modal?.msgWarning?.("导入文件格式不正确,需为加班申请对象数组 JSON");
|
return;
|
}
|
let n = 0;
|
for (let i = 0; i < arr.length; i++) {
|
allRows.value.unshift(normalizeImportedRow(arr[i], i));
|
n++;
|
}
|
proxy?.$modal?.msgSuccess?.(`成功导入 ${n} 条(本地合并)`);
|
handleQuery();
|
} catch {
|
proxy?.$modal?.msgError?.("解析失败,请使用导出文件或约定 JSON 结构");
|
}
|
};
|
reader.readAsText(file, "utf-8");
|
}
|
|
function openAddWithTemplate() {
|
formDialog.visible = false;
|
pendingTemplateBinding.value = null;
|
templateBindVisible.value = true;
|
}
|
|
function onTemplateBound(binding) {
|
pendingTemplateBinding.value = binding;
|
}
|
|
async function onTemplateBindClosed() {
|
const binding = pendingTemplateBinding.value;
|
if (!binding) return;
|
pendingTemplateBinding.value = null;
|
await openFormWithBinding(binding);
|
}
|
|
async function openFormWithBinding(binding) {
|
Object.assign(form, createEmptyForm());
|
applyBindingToForm(form, binding);
|
form.hasTemplateBinding = true;
|
formDialog.mode = "add";
|
formDialog.title = "新增加班申请";
|
await Promise.all([loadUserPool(), loadFlowUsers()]);
|
const applicantKey = applicantTemplateField.value?.key;
|
if (applicantKey && form.formPayload[applicantKey]) {
|
syncApplicantFromUser(form.formPayload[applicantKey]);
|
}
|
const { start, end } = resolveOvertimeTimeRange(form.formPayload, overtimeTimeTemplateField.value);
|
form.overtimeStartTime = start;
|
form.overtimeEndTime = end;
|
form.overtimeHours = computeOvertimeHours(start, end);
|
if (start) form.overtimeDate = dayjs(start).format("YYYY-MM-DD");
|
formDialog.visible = true;
|
nextTick(() => formRef.value?.clearValidate?.());
|
}
|
|
function reopenTemplateBind() {
|
formDialog.visible = false;
|
pendingTemplateBinding.value = null;
|
templateBindVisible.value = true;
|
}
|
|
async function openFormDialog(mode, row) {
|
if (mode === "edit" && row && !row.hasTemplateBinding) {
|
proxy?.$modal?.msgWarning?.("该记录为旧版数据,请重新通过模板发起申请");
|
return;
|
}
|
formDialog.mode = mode;
|
formDialog.title = "编辑加班申请";
|
Object.assign(form, createEmptyForm());
|
if (mode === "edit" && row) {
|
Object.assign(form, {
|
id: row.id,
|
applicantId: row.applicantId,
|
applicantNo: row.applicantNo,
|
applicantName: row.applicantName,
|
overtimeType: row.overtimeType,
|
overtimeDate: row.overtimeDate,
|
overtimeStartTime: row.overtimeStartTime,
|
overtimeEndTime: row.overtimeEndTime,
|
overtimeHours: row.overtimeHours,
|
overtimeReason: row.overtimeReason,
|
hasTemplateBinding: true,
|
templateId: row.templateId,
|
templateName: row.templateName,
|
templateSnapshot: row.templateSnapshot,
|
formFieldDefs: row.formFieldDefs || [],
|
formPayload: JSON.parse(JSON.stringify(row.formPayload || {})),
|
flowNodes: JSON.parse(JSON.stringify(row.flowNodes || [])),
|
templateAttachments: JSON.parse(JSON.stringify(row.templateAttachments || [])),
|
storageBlobDTOs: JSON.parse(JSON.stringify(row.storageBlobDTOs || [])),
|
});
|
await loadUserPool();
|
const applicantKey = applicantTemplateField.value?.key;
|
if (applicantKey) {
|
syncApplicantFromUser(form.formPayload[applicantKey]);
|
}
|
loadFlowUsers();
|
}
|
formDialog.visible = true;
|
nextTick(() => formRef.value?.clearValidate?.());
|
}
|
|
function onFormClosed() {
|
formRef.value?.resetFields?.();
|
}
|
|
/** 从模板填报项同步列表展示字段 */
|
function syncOvertimeFieldsFromPayload() {
|
const defs = form.formFieldDefs || [];
|
const payload = form.formPayload || {};
|
const overtimeTimeField = findOvertimeTimeTemplateField(defs);
|
|
for (const f of defs) {
|
const label = String(f.label || "");
|
const val = payload[f.key];
|
|
if (label.includes("申请人") && !label.includes("日期") && !label.includes("时间")) {
|
if (val != null && val !== "") {
|
form.applicantId = val;
|
const u = userById(val);
|
if (u) {
|
form.applicantName = u.nickName || u.userName || "";
|
form.applicantNo = applicantNoFromUser(u);
|
}
|
}
|
}
|
if ((label.includes("加班类型") || f.key === "overtimeType") && f.type === "select") {
|
form.overtimeType = val != null && val !== "" ? val : "";
|
}
|
if (label.includes("加班日期") && f.type === "date") {
|
form.overtimeDate = val || "";
|
}
|
if (label.includes("事由") || f.key === "summary" || label.includes("加班事由")) {
|
form.overtimeReason = val != null ? String(val) : "";
|
}
|
}
|
|
const { start, end } = resolveOvertimeTimeRange(payload, overtimeTimeField);
|
form.overtimeStartTime = start;
|
form.overtimeEndTime = end;
|
form.overtimeHours = computeOvertimeHours(start, end);
|
if (!form.overtimeDate && start) {
|
form.overtimeDate = dayjs(start).format("YYYY-MM-DD");
|
}
|
}
|
|
async function submitForm() {
|
try {
|
await formRef.value?.validate?.();
|
} catch {
|
return;
|
}
|
const flowCheck = validateTemplateBinding({ flowNodes: form.flowNodes });
|
if (!flowCheck.ok) {
|
proxy?.$modal?.msgWarning?.(flowCheck.message || "请完善审批流程");
|
return;
|
}
|
form.flowNodes = flowCheck.nodes;
|
|
const applicantKey = applicantTemplateField.value?.key;
|
if (applicantKey) {
|
syncApplicantFromUser(form.formPayload[applicantKey]);
|
}
|
syncOvertimeFieldsFromPayload();
|
|
if (form.overtimeHours == null) {
|
proxy?.$modal?.msgWarning?.("请检查模板中的加班时间,结束时间须晚于开始时间");
|
return;
|
}
|
|
const attachmentList = mapStorageBlobsToAttachmentList(form.storageBlobDTOs);
|
const payload = {
|
applicantId: form.applicantId,
|
applicantNo: form.applicantNo,
|
applicantName: form.applicantName,
|
overtimeType: form.overtimeType,
|
overtimeDate: form.overtimeDate,
|
overtimeStartTime: form.overtimeStartTime,
|
overtimeEndTime: form.overtimeEndTime,
|
overtimeHours: form.overtimeHours,
|
overtimeReason: form.overtimeReason,
|
hasTemplateBinding: true,
|
templateId: form.templateId,
|
templateName: form.templateName,
|
templateSnapshot: form.templateSnapshot,
|
formFieldDefs: form.formFieldDefs,
|
formPayload: JSON.parse(JSON.stringify(form.formPayload || {})),
|
flowNodes: JSON.parse(JSON.stringify(form.flowNodes || [])),
|
templateAttachments: JSON.parse(JSON.stringify(form.templateAttachments || [])),
|
storageBlobDTOs: JSON.parse(JSON.stringify(form.storageBlobDTOs || [])),
|
attachmentList,
|
};
|
if (formDialog.mode === "add") {
|
const id = `local_${Date.now()}`;
|
allRows.value.unshift({
|
id,
|
...payload,
|
approvalResult: "pending",
|
createTime: dayjs().format("YYYY-MM-DD HH:mm:ss"),
|
});
|
proxy?.$modal?.msgSuccess?.("新增成功");
|
} else {
|
const idx = allRows.value.findIndex((r) => r.id === form.id);
|
if (idx !== -1) {
|
const prev = allRows.value[idx];
|
allRows.value[idx] = {
|
...prev,
|
id: form.id,
|
...payload,
|
approvalResult: prev.approvalResult ?? "pending",
|
createTime: prev.createTime ?? dayjs().format("YYYY-MM-DD HH:mm:ss"),
|
};
|
}
|
proxy?.$modal?.msgSuccess?.("保存成功");
|
}
|
formDialog.visible = false;
|
handleQuery();
|
}
|
|
onMounted(() => {
|
loadFlowUsers();
|
});
|
</script>
|
|
<style scoped>
|
.mb20 {
|
margin-bottom: 20px;
|
}
|
.search_form {
|
display: flex;
|
flex-wrap: wrap;
|
align-items: center;
|
justify-content: space-between;
|
gap: 12px;
|
}
|
.search_actions {
|
display: flex;
|
flex-wrap: wrap;
|
align-items: center;
|
gap: 8px;
|
}
|
.search_title {
|
font-size: 14px;
|
color: var(--el-text-color-regular);
|
}
|
.sr-only-input {
|
position: absolute;
|
width: 1px;
|
height: 1px;
|
padding: 0;
|
margin: -1px;
|
overflow: hidden;
|
clip: rect(0, 0, 0, 0);
|
white-space: nowrap;
|
border: 0;
|
}
|
.mr6 {
|
margin-right: 6px;
|
}
|
.mb6 {
|
margin-bottom: 6px;
|
}
|
.overtime-apply-form :deep(.el-row) {
|
margin-bottom: 0;
|
}
|
.overtime-apply-form :deep(.el-form-item) {
|
margin-bottom: 18px;
|
}
|
.template-name {
|
font-weight: 600;
|
color: var(--el-text-color-primary);
|
}
|
.ml12 {
|
margin-left: 12px;
|
}
|
.overtime-apply-form-dialog :deep(.el-dialog__body) {
|
padding-top: 12px;
|
}
|
.detail-flow-chain {
|
display: flex;
|
flex-wrap: wrap;
|
align-items: center;
|
gap: 6px 8px;
|
line-height: 1.6;
|
}
|
.detail-flow-step {
|
font-size: 14px;
|
color: var(--el-text-color-primary);
|
}
|
.detail-flow-sep {
|
color: var(--el-text-color-secondary);
|
font-size: 13px;
|
}
|
</style>
|