379 lines
14 KiB
Vue
379 lines
14 KiB
Vue
<template>
|
|
<div class="app-container">
|
|
<el-row :gutter="20">
|
|
<el-col :span="6">
|
|
<el-card>
|
|
<template slot="header">
|
|
<span>提交外出申请</span>
|
|
</template>
|
|
<!-- 左侧是新增表单 -->
|
|
<el-form ref="form" :model="form" :rules="rules" label-width="80px" v-loading="loading">
|
|
<el-form-item label="审批部门" prop="applicantDeptName">
|
|
<el-select v-model="form.applicantDeptName" placeholder="请选择审批部门" filterable @change="getDeptLeader">
|
|
<el-option v-for="item in deptOptions" :key="item.deptId"
|
|
:label="item.deptName + '(' + (item.leader || '无负责人') + ')'" :value="item.deptName"></el-option>
|
|
</el-select>
|
|
</el-form-item>
|
|
<el-form-item label="外出类型" prop="outType">
|
|
<el-select v-model="form.outType" placeholder="请选择外出类型">
|
|
<el-option v-for="dict in dict.type.hrm_out_type" :key="dict.value" :label="dict.label"
|
|
:value="dict.value"></el-option>
|
|
</el-select>
|
|
</el-form-item>
|
|
<el-form-item label="外出人姓名" prop="applicantName">
|
|
<dict-select v-model="form.applicantName" dict-type="hrm_leave_employee"
|
|
placeholder="请选择外出人姓名"></dict-select>
|
|
</el-form-item>
|
|
<el-form-item label="开始时间" prop="startTime">
|
|
<el-date-picker clearable v-model="form.startTime" type="datetime" value-format="yyyy-MM-dd HH:mm:ss"
|
|
placeholder="请选择外出开始时间">
|
|
</el-date-picker>
|
|
</el-form-item>
|
|
<el-form-item label="结束时间" prop="endTime">
|
|
<el-date-picker clearable v-model="form.endTime" type="datetime" value-format="yyyy-MM-dd HH:mm:ss"
|
|
placeholder="请选择外出结束时间">
|
|
</el-date-picker>
|
|
</el-form-item>
|
|
<el-form-item label="外出小时数" prop="outHours">
|
|
<el-input v-model="form.outHours" placeholder="选择时间后自动计算,也可手动修改" />
|
|
</el-form-item>
|
|
<el-form-item label="外出地点" prop="outPlace">
|
|
<el-input v-model="form.outPlace" type="textarea" placeholder="请输入内容" />
|
|
</el-form-item>
|
|
<el-form-item label="外出原因" prop="outReason">
|
|
<el-input v-model="form.outReason" type="textarea" placeholder="请输入内容" />
|
|
</el-form-item>
|
|
<el-form-item label="附件" prop="attachmentUrls">
|
|
<FileUpload v-model="form.attachmentUrls" :max-count="1" :show-file-list="true" />
|
|
</el-form-item>
|
|
<el-form-item label="备注" prop="remark">
|
|
<el-input v-model="form.remark" placeholder="请输入备注" />
|
|
</el-form-item>
|
|
</el-form>
|
|
<div style="text-align: center;">
|
|
<el-button type="primary" @click="handleSubmit" v-loading="loading">{{ form.outId ? '更新申请' : '提交申请'
|
|
}}</el-button>
|
|
<el-button @click="handleReset">重置表单</el-button>
|
|
</div>
|
|
</el-card>
|
|
</el-col>
|
|
<el-col :span="18">
|
|
<el-card>
|
|
<template slot="header">
|
|
<span>外出申请列表</span>
|
|
<el-button style="float: right;" icon="el-icon-refresh" @click="getList">刷新</el-button>
|
|
</template>
|
|
<el-table v-loading="loading" :data="leaveRequestList">
|
|
<el-table-column prop="approvalStatus" label="审批状态" align="center">
|
|
<template slot-scope="scope">
|
|
<el-tag :type="getStatusTagType(scope.row.approvalStatus)">
|
|
{{ getStatusText(scope.row.approvalStatus) }}
|
|
</el-tag>
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="外出类型" align="center" prop="outType">
|
|
<template slot-scope="scope">
|
|
<dict-tag :options="dict.type.hrm_out_type" :value="scope.row.outType" />
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="外出人姓名" align="center" prop="applicantName">
|
|
<template slot-scope="scope">
|
|
<dict-tag :options="dict.type.hrm_leave_employee" :value="scope.row.applicantName" />
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="审批人" align="center" prop="approverName"></el-table-column>
|
|
<el-table-column label="开始时间" align="center" prop="startTime" width="120">
|
|
<template slot-scope="scope">
|
|
<span>{{ parseTime(scope.row.startTime, '{y}-{m}-{d} {h}') }}</span>
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="结束时间" align="center" prop="endTime" width="120">
|
|
<template slot-scope="scope">
|
|
<span>{{ parseTime(scope.row.endTime, '{y}-{m}-{d} {h}') }}</span>
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="外出小时数" align="center" prop="outHours" />
|
|
<el-table-column label="外出地点" align="center" prop="outPlace" show-overflow-tooltip />
|
|
<el-table-column label="外出原因" align="center" prop="outReason" show-overflow-tooltip />
|
|
<el-table-column label="操作" align="center" width="160">
|
|
<template slot-scope="scope">
|
|
<el-button icon="el-icon-printer" size="mini" v-if="scope.row.approvalStatus === '已同意'"
|
|
@click="handlePrint(scope.row)">打印</el-button>
|
|
<el-button icon="el-icon-edit" size="mini" @click="handleEdit(scope.row)"
|
|
v-if="scope.row.approvalStatus === '待审批'">修改</el-button>
|
|
<el-button icon="el-icon-delete" size="mini" @click="handleWithdraw(scope.row)"
|
|
v-if="scope.row.approvalStatus === '待审批'">撤回</el-button>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table>
|
|
<pagination v-show="total > 0" :total="total" :page.sync="queryParams.pageNum"
|
|
:limit.sync="queryParams.pageSize" @pagination="getList" />
|
|
</el-card>
|
|
</el-col>
|
|
</el-row>
|
|
|
|
<out-label-printer ref="outLabelPrinter" :printer-info="printerInfo"></out-label-printer>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import { getOutRequest, addOutRequest, updateOutRequest } from "@/api/wms/outRequest";
|
|
import { listApproval, updateApproval } from "@/api/wms/approval"
|
|
import { listDeptWithChildren } from "@/api/system/dept"
|
|
import FileUpload from '@/components/FileUpload'
|
|
import DictSelect from '@/components/DictSelect'
|
|
import OutLabelPrinter from '../components/outLabelPrinter'
|
|
|
|
export default {
|
|
name: 'LeaveApply',
|
|
dicts: ['hrm_leave_shift', 'hrm_out_type', 'hrm_department', 'hrm_leave_employee'],
|
|
components: {
|
|
FileUpload,
|
|
DictSelect,
|
|
OutLabelPrinter
|
|
},
|
|
data() {
|
|
return {
|
|
// 表单参数
|
|
form: {},
|
|
loading: false,
|
|
buttonLoading: false,
|
|
leaveRequestList: [],
|
|
total: 0,
|
|
queryParams: {
|
|
pageNum: 1,
|
|
pageSize: 10,
|
|
leaveStatus: undefined,
|
|
applyType: 'out',
|
|
createBy: this.$store.getters.name,
|
|
},
|
|
// 表单校验规则【核心新增:完整必填校验】
|
|
rules: {
|
|
outType: [{ required: true, message: '外出类型不能为空', trigger: 'change' }],
|
|
applicantName: [{ required: true, message: '外出人姓名不能为空', trigger: 'change' }],
|
|
startTime: [{ required: true, message: '开始时间不能为空', trigger: 'change' }],
|
|
endTime: [{ required: true, message: '结束时间不能为空', trigger: 'change' }],
|
|
outHours: [{ required: true, message: '外出小时数不能为空', trigger: ['blur', 'change'] }],
|
|
outPlace: [{ required: true, message: '外出地点不能为空', trigger: ['blur', 'change'] }],
|
|
outReason: [{ required: true, message: '外出原因不能为空', trigger: ['blur', 'change'] }],
|
|
applicantDeptName: [{ required: true, message: '审批部门不能为空', trigger: 'change' }],
|
|
},
|
|
deptOptions: [],
|
|
printerInfo: {},
|
|
}
|
|
},
|
|
// 核心新增:监听开始/结束时间变化,自动计算天数
|
|
watch: {
|
|
'form.startTime': {
|
|
handler() {
|
|
this.calculateLeaveDays()
|
|
},
|
|
immediate: false
|
|
},
|
|
'form.endTime': {
|
|
handler() {
|
|
this.calculateLeaveDays()
|
|
},
|
|
immediate: false
|
|
},
|
|
},
|
|
created() {
|
|
this.getList();
|
|
this.getDeptList();
|
|
},
|
|
methods: {
|
|
getDeptList() {
|
|
listDeptWithChildren("2009923867307630594").then(response => {
|
|
this.deptOptions = response.data
|
|
})
|
|
},
|
|
// 获取部门负责人
|
|
getDeptLeader() {
|
|
const selectedDept = this.deptOptions.find(item => item.deptName === this.form.applicantDeptName)
|
|
const approverName = selectedDept.leader;
|
|
if (!approverName) {
|
|
this.$message.warning('该部门无负责人,申请将无人审批');
|
|
return;
|
|
}
|
|
this.form.approverName = approverName
|
|
},
|
|
/** 查询外出申请列表 */
|
|
getList() {
|
|
this.loading = true;
|
|
listApproval(this.queryParams).then(response => {
|
|
this.leaveRequestList = response.rows.map(item => {
|
|
return {
|
|
approvalStatus: item.approval.approvalStatus,
|
|
applyId: item.approval.applyId,
|
|
approvalId: item.approval.approvalId,
|
|
approvalType: item.approval.approvalType,
|
|
approverName: item.approval.approverName,
|
|
...item.detail,
|
|
}
|
|
});
|
|
this.total = response.total;
|
|
this.loading = false;
|
|
});
|
|
},
|
|
handleReset() {
|
|
this.reset()
|
|
},
|
|
// 表单重置
|
|
reset() {
|
|
this.form = {
|
|
outId: undefined,
|
|
outTitle: undefined,
|
|
outType: undefined,
|
|
applicantName: undefined,
|
|
applicantDeptName: undefined,
|
|
startTime: undefined,
|
|
endTime: undefined,
|
|
outHours: undefined,
|
|
outPlace: undefined,
|
|
outReason: undefined,
|
|
attachmentUrls: undefined,
|
|
createBy: undefined,
|
|
createTime: undefined,
|
|
updateBy: undefined,
|
|
updateTime: undefined,
|
|
delFlag: undefined,
|
|
remark: undefined
|
|
};
|
|
this.resetForm("form");
|
|
},
|
|
/** 搜索按钮操作 */
|
|
handleQuery() {
|
|
this.queryParams.pageNum = 1;
|
|
this.getList();
|
|
},
|
|
/** 重置按钮操作 */
|
|
resetQuery() {
|
|
this.resetForm("queryForm");
|
|
this.handleQuery();
|
|
},
|
|
/** 修改按钮操作 */
|
|
handleEdit(row) {
|
|
this.loading = true;
|
|
this.reset();
|
|
const outId = row.applyId
|
|
getOutRequest(outId).then(response => {
|
|
this.loading = false;
|
|
this.form = response.data;
|
|
});
|
|
},
|
|
handlePrint(row) {
|
|
const startYear = new Date(row.startTime).getFullYear()
|
|
const endYear = new Date(row.endTime).getFullYear()
|
|
const startMonth = new Date(row.startTime).getMonth() + 1
|
|
const endMonth = new Date(row.endTime).getMonth() + 1
|
|
const startDay = new Date(row.startTime).getDate()
|
|
const endDay = new Date(row.endTime).getDate()
|
|
const applyName = row.applicantName
|
|
const approverName = row.approverName
|
|
const reason = row.outReason
|
|
const outHours = parseInt(row.outHours)
|
|
const outPlace = row.outPlace
|
|
this.printerInfo = {
|
|
startYear,
|
|
endYear,
|
|
startMonth,
|
|
endMonth,
|
|
startDay,
|
|
endDay,
|
|
applyName,
|
|
approverName,
|
|
reason,
|
|
outHours,
|
|
outPlace,
|
|
}
|
|
this.$nextTick(() => {
|
|
this.$refs["outLabelPrinter"].print()
|
|
})
|
|
},
|
|
/** 提交按钮 */
|
|
handleSubmit() {
|
|
this.form.outTitle = `${this.form.applicantName}-${this.form.outType}-${this.form.startTime}-${this.form.outReason || ''}`
|
|
this.$refs["form"].validate(valid => {
|
|
if (valid) {
|
|
this.buttonLoading = true;
|
|
if (this.form.outId != null) {
|
|
updateOutRequest(this.form).then(response => {
|
|
this.$modal.msgSuccess("修改成功");
|
|
this.getList();
|
|
this.reset()
|
|
}).finally(() => {
|
|
this.buttonLoading = false;
|
|
});
|
|
} else {
|
|
addOutRequest(this.form).then(response => {
|
|
this.$modal.msgSuccess("新增成功");
|
|
this.getList();
|
|
this.reset()
|
|
}).finally(() => {
|
|
this.buttonLoading = false;
|
|
});
|
|
}
|
|
}
|
|
});
|
|
},
|
|
handleWithdraw(row) {
|
|
this.$modal.confirm('是否确认撤回外出申请编号为"' + row.applyId + '"的数据项?').then(() => {
|
|
this.loading = true;
|
|
return updateApproval({
|
|
approvalId: row.approvalId,
|
|
approvalStatus: '已撤销'
|
|
});
|
|
}).then(() => {
|
|
this.loading = false;
|
|
this.getList();
|
|
this.$modal.msgSuccess("撤回成功");
|
|
}).catch(() => {
|
|
}).finally(() => {
|
|
this.loading = false;
|
|
});
|
|
},
|
|
// 获取审批状态对应的标签类型
|
|
getStatusTagType(status) {
|
|
const typeMap = {
|
|
'待审批': 'warning',
|
|
'已同意': 'success',
|
|
'已驳回': 'danger',
|
|
'已撤销': 'info',
|
|
}
|
|
return typeMap[status] || 'default'
|
|
},
|
|
|
|
// 获取审批状态的中文文本
|
|
getStatusText(status) {
|
|
const textMap = {
|
|
'待审批': '待审批',
|
|
'已同意': '已同意',
|
|
'已驳回': '已驳回',
|
|
'已撤销': '已撤销',
|
|
}
|
|
return textMap[status] || '未知状态'
|
|
},
|
|
// 核心新增:自动计算外出小时数的方法
|
|
calculateLeaveDays() {
|
|
const { startTime, endTime } = this.form;
|
|
// 两个时间都选择后才计算
|
|
if (startTime && endTime) {
|
|
// 转成时间戳
|
|
const start = new Date(startTime).getTime();
|
|
const end = new Date(endTime).getTime();
|
|
// 判断结束时间不能小于开始时间
|
|
if (end < start) {
|
|
this.$modal.msgWarning('结束时间不能早于开始时间,请重新选择!');
|
|
this.form.leaveDays = undefined;
|
|
return;
|
|
}
|
|
// 计算时间差(毫秒) → 转天 → 保留2位小数
|
|
const diffTime = end - start;
|
|
const diffHours = parseInt((diffTime / (1000 * 60 * 60)));
|
|
// 赋值到天数输入框
|
|
this.form.outHours = diffHours;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
</script> |