2024-10-13 00:15:53 +08:00
|
|
|
<template>
|
2024-10-15 23:22:33 +08:00
|
|
|
<div class="app-container attendance-ubi-data">
|
2024-10-13 00:15:53 +08:00
|
|
|
<el-form :model="queryParams" ref="queryRef" :inline="true" v-show="showSearch" label-width="68px">
|
2024-10-15 23:22:33 +08:00
|
|
|
|
|
|
|
<el-form-item label="项目" prop="projectId">
|
2024-12-28 20:35:20 +08:00
|
|
|
<el-select :disabled="data.currentPrjId != ''" style="width:150px;" v-model="queryParams.projectId" placeholder="请选择项目" clearable
|
2024-10-15 23:22:33 +08:00
|
|
|
@change="()=>{handleQuery();projectChange();}">
|
|
|
|
<el-option v-for="prj in data.projects" :key="prj.id" :label="prj.projectName" :value="prj.id">
|
|
|
|
</el-option>
|
|
|
|
</el-select>
|
2024-10-13 00:15:53 +08:00
|
|
|
</el-form-item>
|
2024-10-15 23:22:33 +08:00
|
|
|
<el-form-item label="所属单位" prop="subDeptId">
|
2024-10-16 00:24:46 +08:00
|
|
|
<el-select v-model="queryParams.subDeptId" style="width:150px;" placeholder="请选择所属单位" clearable @change="()=>{handleQuery();subDeptChange();}">
|
2024-10-15 23:22:33 +08:00
|
|
|
<el-option v-for="(it, idx) in data.subdepts" :key="it.id" :label="it.subDeptName" :value="it.id" />
|
|
|
|
</el-select>
|
2024-10-13 00:15:53 +08:00
|
|
|
</el-form-item>
|
2024-10-15 23:22:33 +08:00
|
|
|
<el-form-item label="姓名" prop="userName">
|
|
|
|
<el-input v-model="queryParams.userName" placeholder="请输入姓名" clearable @keyup.enter="handleQuery" />
|
|
|
|
</el-form-item><el-form-item label="日期" prop="inTime">
|
|
|
|
<el-date-picker clearable v-model="queryParams.inTime" type="date" value-format="YYYY-MM-DD" @change="handleQuery"
|
|
|
|
placeholder="请选择日期">
|
2024-10-13 00:15:53 +08:00
|
|
|
</el-date-picker>
|
2024-10-15 23:22:33 +08:00
|
|
|
</el-form-item>
|
2024-10-13 00:15:53 +08:00
|
|
|
<el-form-item>
|
|
|
|
<el-button type="primary" icon="Search" @click="handleQuery">搜索</el-button>
|
|
|
|
<el-button icon="Refresh" @click="resetQuery">重置</el-button>
|
|
|
|
</el-form-item>
|
|
|
|
</el-form>
|
|
|
|
|
2024-10-15 23:22:33 +08:00
|
|
|
<el-row :gutter="10" class="mb8" v-if="false">
|
2024-10-13 00:15:53 +08:00
|
|
|
<el-col :span="1.5">
|
2024-10-13 11:26:52 +08:00
|
|
|
<el-button type="primary" plain icon="Plus" @click="handleAdd"
|
|
|
|
v-hasPermi="['manage:attendanceUbiData:add']">新增</el-button>
|
2024-10-13 00:15:53 +08:00
|
|
|
</el-col>
|
|
|
|
<el-col :span="1.5">
|
2024-10-13 11:26:52 +08:00
|
|
|
<el-button type="success" plain icon="Edit" :disabled="single" @click="handleUpdate"
|
|
|
|
v-hasPermi="['manage:attendanceUbiData:edit']">修改</el-button>
|
2024-10-13 00:15:53 +08:00
|
|
|
</el-col>
|
|
|
|
<el-col :span="1.5">
|
2024-10-13 11:26:52 +08:00
|
|
|
<el-button type="danger" plain icon="Delete" :disabled="multiple" @click="handleDelete"
|
|
|
|
v-hasPermi="['manage:attendanceUbiData:remove']">删除</el-button>
|
2024-10-13 00:15:53 +08:00
|
|
|
</el-col>
|
|
|
|
<el-col :span="1.5">
|
2024-10-13 11:26:52 +08:00
|
|
|
<el-button type="warning" plain icon="Download" @click="handleExport"
|
|
|
|
v-hasPermi="['manage:attendanceUbiData:export']">导出</el-button>
|
2024-10-13 00:15:53 +08:00
|
|
|
</el-col>
|
|
|
|
<right-toolbar v-model:showSearch="showSearch" @queryTable="getList"></right-toolbar>
|
|
|
|
</el-row>
|
|
|
|
|
2024-10-15 23:22:33 +08:00
|
|
|
<el-table v-loading="loading" :data="attendanceUbiDataList" @selection-change="handleSelectionChange" class="data-list">
|
|
|
|
|
|
|
|
<el-table-column label="姓名" align="center" prop="userName" />
|
|
|
|
<el-table-column label="项目" align="center" prop="projectName" />
|
|
|
|
<el-table-column label="单位" align="center" prop="subDeptName" />
|
|
|
|
<el-table-column label="进场照片" align="center" prop="inPhoto">
|
|
|
|
<template #default="scope">
|
|
|
|
<el-image v-if="scope.row.inPhoto" :src="scope.row.inPhoto" style="height:80px;" :preview-teleported="true" :preview-src-list="[scope.row.inPhoto]"></el-image>
|
|
|
|
</template>
|
|
|
|
</el-table-column>
|
2024-10-13 00:15:53 +08:00
|
|
|
<el-table-column label="进场时间" align="center" prop="inTime" width="180">
|
|
|
|
<template #default="scope">
|
2024-10-13 11:26:52 +08:00
|
|
|
<span>{{ parseTime(scope.row.inTime)}}</span>
|
2024-10-13 00:15:53 +08:00
|
|
|
</template>
|
|
|
|
</el-table-column>
|
2024-10-15 23:22:33 +08:00
|
|
|
|
|
|
|
<el-table-column label="离场照片" align="center" prop="outPhoto">
|
|
|
|
<template #default="scope">
|
|
|
|
<el-image v-if="scope.row.outPhoto" :src="scope.row.outPhoto" style="height:80px;" :preview-teleported="true" :preview-src-list="[scope.row.outPhoto]"></el-image>
|
|
|
|
</template>
|
|
|
|
</el-table-column>
|
2024-10-13 00:15:53 +08:00
|
|
|
<el-table-column label="离场时间" align="center" prop="outTime" width="180">
|
|
|
|
<template #default="scope">
|
2024-10-15 23:22:33 +08:00
|
|
|
<span>{{ parseTime(scope.row.outTime) }}</span>
|
2024-10-13 00:15:53 +08:00
|
|
|
</template>
|
|
|
|
</el-table-column>
|
2024-10-15 23:22:33 +08:00
|
|
|
<el-table-column label="班组" align="center" prop="subDeptGroupName" />
|
|
|
|
<el-table-column label="工种类型" align="center" prop="craftType">
|
|
|
|
<template #default="scope">
|
|
|
|
<dict-tag :options="pro_craft_type" :value="scope.row.craftType" class="dict-tag"/>
|
|
|
|
</template>
|
|
|
|
</el-table-column>
|
|
|
|
<el-table-column label="工种岗位" align="center" prop="craftPost">
|
|
|
|
<template #default="scope">
|
|
|
|
<dict-tag :options="pro_craft_post" :value="scope.row.craftPost" class="dict-tag"/>
|
|
|
|
</template>
|
|
|
|
</el-table-column>
|
|
|
|
<el-table-column label="操作" align="center" class-name="small-padding fixed-width" v-if="false">
|
2024-10-13 00:15:53 +08:00
|
|
|
<template #default="scope">
|
2024-10-13 11:26:52 +08:00
|
|
|
<el-button link type="primary" icon="Edit" @click="handleUpdate(scope.row)"
|
|
|
|
v-hasPermi="['manage:attendanceUbiData:edit']">修改</el-button>
|
|
|
|
<el-button link type="primary" icon="Delete" @click="handleDelete(scope.row)"
|
|
|
|
v-hasPermi="['manage:attendanceUbiData:remove']">删除</el-button>
|
2024-10-13 00:15:53 +08:00
|
|
|
</template>
|
|
|
|
</el-table-column>
|
|
|
|
</el-table>
|
2024-10-13 11:26:52 +08:00
|
|
|
|
|
|
|
<pagination v-show="total > 0" :total="total" v-model:page="queryParams.pageNum" v-model:limit="queryParams.pageSize"
|
|
|
|
@pagination="getList" />
|
2024-10-13 00:15:53 +08:00
|
|
|
|
|
|
|
<!-- 添加或修改考勤管理对话框 -->
|
|
|
|
<el-dialog :title="title" v-model="open" width="500px" append-to-body>
|
|
|
|
<el-form ref="attendanceUbiDataRef" :model="form" :rules="rules" label-width="80px">
|
|
|
|
<el-form-item label="公司ID" prop="comId">
|
|
|
|
<el-input v-model="form.comId" placeholder="请输入公司ID" />
|
|
|
|
</el-form-item>
|
|
|
|
<el-form-item label="项目ID" prop="projectId">
|
|
|
|
<el-input v-model="form.projectId" placeholder="请输入项目ID" />
|
|
|
|
</el-form-item>
|
|
|
|
<el-form-item label="用户ID" prop="userId">
|
|
|
|
<el-input v-model="form.userId" placeholder="请输入用户ID" />
|
|
|
|
</el-form-item>
|
|
|
|
<el-form-item label="${comment}" prop="userName">
|
|
|
|
<el-input v-model="form.userName" placeholder="请输入${comment}" />
|
|
|
|
</el-form-item>
|
|
|
|
<el-form-item label="班组编号(外键)" prop="subDeptGroup">
|
|
|
|
<el-input v-model="form.subDeptGroup" placeholder="请输入班组编号(外键)" />
|
|
|
|
</el-form-item>
|
|
|
|
<el-form-item label="班组名称" prop="subDeptGroupName">
|
2024-10-15 23:22:33 +08:00
|
|
|
<el-input v-model="form.subDeptGroupName" placeholder="请输入班组名称" />
|
2024-10-13 00:15:53 +08:00
|
|
|
</el-form-item>
|
|
|
|
<el-form-item label="工种岗位" prop="craftPost">
|
|
|
|
<el-input v-model="form.craftPost" placeholder="请输入工种岗位" />
|
|
|
|
</el-form-item>
|
|
|
|
<el-form-item label="进场时间" prop="inTime">
|
2024-10-13 11:26:52 +08:00
|
|
|
<el-date-picker clearable v-model="form.inTime" type="date" value-format="YYYY-MM-DD" placeholder="请选择进场时间">
|
2024-10-13 00:15:53 +08:00
|
|
|
</el-date-picker>
|
|
|
|
</el-form-item>
|
|
|
|
<el-form-item label="离场时间" prop="outTime">
|
2024-10-13 11:26:52 +08:00
|
|
|
<el-date-picker clearable v-model="form.outTime" type="date" value-format="YYYY-MM-DD" placeholder="请选择离场时间">
|
2024-10-13 00:15:53 +08:00
|
|
|
</el-date-picker>
|
|
|
|
</el-form-item>
|
|
|
|
<el-form-item label="设备NO" prop="deviceNo">
|
|
|
|
<el-input v-model="form.deviceNo" placeholder="请输入设备NO" />
|
|
|
|
</el-form-item>
|
|
|
|
<el-form-item label="${comment}" prop="isDel">
|
|
|
|
<el-input v-model="form.isDel" placeholder="请输入${comment}" />
|
|
|
|
</el-form-item>
|
|
|
|
<el-form-item label="${comment}" prop="state">
|
|
|
|
<el-input v-model="form.state" placeholder="请输入${comment}" />
|
|
|
|
</el-form-item>
|
|
|
|
<el-form-item label="${comment}" prop="remark">
|
|
|
|
<el-input v-model="form.remark" placeholder="请输入${comment}" />
|
|
|
|
</el-form-item>
|
|
|
|
</el-form>
|
|
|
|
<template #footer>
|
|
|
|
<div class="dialog-footer">
|
|
|
|
<el-button type="primary" @click="submitForm">确 定</el-button>
|
|
|
|
<el-button @click="cancel">取 消</el-button>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
</el-dialog>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script setup name="AttendanceUbiData">
|
|
|
|
import { listAttendanceUbiData, getAttendanceUbiData, delAttendanceUbiData, addAttendanceUbiData, updateAttendanceUbiData } from "@/api/manage/attendanceUbiData";
|
2024-10-15 23:22:33 +08:00
|
|
|
import { findMyProjectList } from "@/api/publics";
|
|
|
|
import useUserStore from '@/store/modules/user'
|
|
|
|
import { listProProjectInfoSubdepts } from "@/api/manage/proProjectInfoSubdepts";
|
2024-10-16 00:24:46 +08:00
|
|
|
|
2024-10-13 00:15:53 +08:00
|
|
|
const { proxy } = getCurrentInstance();
|
|
|
|
|
2024-10-15 23:22:33 +08:00
|
|
|
const { pro_craft_type, pro_craft_post } = proxy.useDict( 'pro_craft_type', 'pro_craft_post');
|
|
|
|
|
|
|
|
const userStore = useUserStore()
|
|
|
|
|
2024-10-13 00:15:53 +08:00
|
|
|
const attendanceUbiDataList = ref([]);
|
|
|
|
const open = ref(false);
|
|
|
|
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,
|
|
|
|
comId: null,
|
|
|
|
projectId: null,
|
|
|
|
userId: null,
|
|
|
|
userName: null,
|
|
|
|
subDeptGroup: null,
|
|
|
|
subDeptGroupName: null,
|
|
|
|
craftType: null,
|
|
|
|
craftPost: null,
|
|
|
|
inTime: null,
|
|
|
|
inData: null,
|
|
|
|
outTime: null,
|
|
|
|
outData: null,
|
|
|
|
deviceNo: null,
|
|
|
|
isDel: null,
|
|
|
|
state: null,
|
|
|
|
},
|
|
|
|
rules: {
|
2024-10-15 23:22:33 +08:00
|
|
|
},
|
|
|
|
projects:[],
|
|
|
|
subdepts:[],
|
2024-12-28 20:35:20 +08:00
|
|
|
currentPrjId: '',
|
2024-10-13 00:15:53 +08:00
|
|
|
});
|
|
|
|
|
|
|
|
const { queryParams, form, rules } = toRefs(data);
|
|
|
|
|
2024-10-15 23:22:33 +08:00
|
|
|
/*所属单位改变事件 */
|
|
|
|
function subDeptChange(){
|
|
|
|
|
|
|
|
}
|
|
|
|
/*项目改变事件 */
|
|
|
|
function projectChange(){
|
|
|
|
listProProjectInfoSubdepts({ projectId: queryParams.value.projectId, pageNum: 1, pageSize: 100 }).then(d => {
|
|
|
|
data.subdepts = d.rows || [];
|
|
|
|
});
|
|
|
|
}
|
|
|
|
/** 查询项目列表 */
|
|
|
|
function getProjectList() {
|
|
|
|
findMyProjectList({ pageNum: 1, pageSize: 100 }).then(response => {
|
|
|
|
data.projects = response.rows;
|
2024-12-28 20:35:20 +08:00
|
|
|
if (userStore.currentPrjId) {
|
|
|
|
queryParams.value.projectId = userStore.currentPrjId
|
|
|
|
data.currentPrjId = userStore.currentPrjId;
|
2024-10-15 23:22:33 +08:00
|
|
|
projectChange();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2024-10-13 00:15:53 +08:00
|
|
|
/** 查询考勤管理列表 */
|
|
|
|
function getList() {
|
|
|
|
loading.value = true;
|
|
|
|
listAttendanceUbiData(queryParams.value).then(response => {
|
|
|
|
attendanceUbiDataList.value = response.rows;
|
|
|
|
total.value = response.total;
|
|
|
|
loading.value = false;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
// 取消按钮
|
|
|
|
function cancel() {
|
|
|
|
open.value = false;
|
|
|
|
reset();
|
|
|
|
}
|
|
|
|
|
|
|
|
// 表单重置
|
|
|
|
function reset() {
|
|
|
|
form.value = {
|
|
|
|
id: null,
|
|
|
|
comId: null,
|
|
|
|
projectId: null,
|
|
|
|
userId: null,
|
|
|
|
userName: null,
|
|
|
|
subDeptGroup: null,
|
|
|
|
subDeptGroupName: null,
|
|
|
|
craftType: null,
|
|
|
|
craftPost: null,
|
|
|
|
inTime: null,
|
|
|
|
inData: null,
|
|
|
|
outTime: null,
|
|
|
|
outData: null,
|
|
|
|
deviceNo: null,
|
|
|
|
isDel: null,
|
|
|
|
state: null,
|
|
|
|
remark: null,
|
|
|
|
createBy: null,
|
|
|
|
createTime: null,
|
|
|
|
updateBy: null,
|
|
|
|
updateTime: null
|
|
|
|
};
|
|
|
|
proxy.resetForm("attendanceUbiDataRef");
|
|
|
|
}
|
|
|
|
|
|
|
|
/** 搜索按钮操作 */
|
|
|
|
function handleQuery() {
|
|
|
|
queryParams.value.pageNum = 1;
|
|
|
|
getList();
|
|
|
|
}
|
|
|
|
|
|
|
|
/** 重置按钮操作 */
|
|
|
|
function resetQuery() {
|
|
|
|
proxy.resetForm("queryRef");
|
|
|
|
handleQuery();
|
|
|
|
}
|
|
|
|
|
|
|
|
// 多选框选中数据
|
|
|
|
function handleSelectionChange(selection) {
|
|
|
|
ids.value = selection.map(item => item.id);
|
|
|
|
single.value = selection.length != 1;
|
|
|
|
multiple.value = !selection.length;
|
|
|
|
}
|
|
|
|
|
|
|
|
/** 新增按钮操作 */
|
|
|
|
function handleAdd() {
|
|
|
|
reset();
|
|
|
|
open.value = true;
|
|
|
|
title.value = "添加考勤管理";
|
|
|
|
}
|
|
|
|
|
|
|
|
/** 修改按钮操作 */
|
|
|
|
function handleUpdate(row) {
|
|
|
|
reset();
|
|
|
|
const _id = row.id || ids.value
|
|
|
|
getAttendanceUbiData(_id).then(response => {
|
|
|
|
form.value = response.data;
|
|
|
|
open.value = true;
|
|
|
|
title.value = "修改考勤管理";
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
/** 提交按钮 */
|
|
|
|
function submitForm() {
|
|
|
|
proxy.$refs["attendanceUbiDataRef"].validate(valid => {
|
|
|
|
if (valid) {
|
|
|
|
if (form.value.id != null) {
|
|
|
|
updateAttendanceUbiData(form.value).then(response => {
|
|
|
|
proxy.$modal.msgSuccess("修改成功");
|
|
|
|
open.value = false;
|
|
|
|
getList();
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
addAttendanceUbiData(form.value).then(response => {
|
|
|
|
proxy.$modal.msgSuccess("新增成功");
|
|
|
|
open.value = false;
|
|
|
|
getList();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
/** 删除按钮操作 */
|
|
|
|
function handleDelete(row) {
|
|
|
|
const _ids = row.id || ids.value;
|
2024-10-13 11:26:52 +08:00
|
|
|
proxy.$modal.confirm('是否确认删除考勤管理编号为"' + _ids + '"的数据项?').then(function () {
|
2024-10-13 00:15:53 +08:00
|
|
|
return delAttendanceUbiData(_ids);
|
|
|
|
}).then(() => {
|
|
|
|
getList();
|
|
|
|
proxy.$modal.msgSuccess("删除成功");
|
2024-10-13 11:26:52 +08:00
|
|
|
}).catch(() => { });
|
2024-10-13 00:15:53 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/** 导出按钮操作 */
|
|
|
|
function handleExport() {
|
|
|
|
proxy.download('manage/attendanceUbiData/export', {
|
|
|
|
...queryParams.value
|
|
|
|
}, `attendanceUbiData_${new Date().getTime()}.xlsx`)
|
|
|
|
}
|
|
|
|
|
2024-10-16 00:24:46 +08:00
|
|
|
queryParams.value.inTime= proxy.$dt(new Date()).format("YYYY-MM-DD");
|
2024-10-13 00:15:53 +08:00
|
|
|
getList();
|
2024-10-15 23:22:33 +08:00
|
|
|
getProjectList();
|
2024-10-16 00:24:46 +08:00
|
|
|
|
2024-10-13 00:15:53 +08:00
|
|
|
</script>
|
2024-10-15 23:22:33 +08:00
|
|
|
<style lang="scss">
|
|
|
|
.attendance-ubi-data{
|
|
|
|
.data-list{
|
|
|
|
.dict-tag{
|
|
|
|
|
|
|
|
*{
|
|
|
|
font-family: none !important;
|
|
|
|
color:#222;
|
|
|
|
font-size: 14px;
|
|
|
|
}
|
|
|
|
.el-tag{
|
|
|
|
background: none;
|
|
|
|
border: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|