2024-11-05 18:55:58 +08:00
|
|
|
|
<template>
|
|
|
|
|
|
<div class="app-container" v-loading="loading">
|
|
|
|
|
|
<el-row :gutter="20">
|
2024-11-29 14:45:56 +08:00
|
|
|
|
<el-col :span="16">
|
|
|
|
|
|
|
2024-12-15 21:41:23 +08:00
|
|
|
|
<el-header>
|
|
|
|
|
|
<div style="">
|
|
|
|
|
|
<span>签到表</span>
|
|
|
|
|
|
<span style="float:right;">
|
|
|
|
|
|
<el-date-picker
|
|
|
|
|
|
v-model="queryParams.selectTime"
|
|
|
|
|
|
value-format="yyyy-MM-dd"
|
|
|
|
|
|
type="month"
|
|
|
|
|
|
@change="getList()"
|
|
|
|
|
|
placeholder="选择月">
|
|
|
|
|
|
</el-date-picker>
|
|
|
|
|
|
</span>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</el-header>
|
2024-11-05 18:55:58 +08:00
|
|
|
|
<table>
|
|
|
|
|
|
<thead>
|
|
|
|
|
|
<tr>
|
|
|
|
|
|
<th width="80"></th>
|
2024-11-29 14:45:56 +08:00
|
|
|
|
<th v-for="(item,index) in dateLength" :class="selectHead===index+1?'selectBox':''"
|
|
|
|
|
|
@click="selectMany(index+1)">
|
2024-11-05 18:55:58 +08:00
|
|
|
|
{{ index + 1 }}
|
|
|
|
|
|
</th>
|
|
|
|
|
|
</tr>
|
|
|
|
|
|
</thead>
|
|
|
|
|
|
<tbody>
|
|
|
|
|
|
<tr v-for="(item,index) in userList">
|
|
|
|
|
|
<td :class="(item.userId===selectUser.userId || selectAll)?'selectBox':''">{{ item.nickName }}</td>
|
2024-12-04 13:45:45 +08:00
|
|
|
|
<td style="font-size: small" v-for="(item2,index2) in dateLength" @click="selectAttendDay(item,index,index2+1)"
|
|
|
|
|
|
:style="{backgroundColor:(item.attendances.length>0 && item.attendances.findIndex(i=>i.attendanceDay === index2+1) >-1) ?
|
|
|
|
|
|
(item.attendances[item.attendances.findIndex(i=>i.attendanceDay === index2+1)].projectId!==0?item.attendances[item.attendances.findIndex(i=>i.attendanceDay === index2+1)].color:'#fdf6e4'):
|
|
|
|
|
|
(index2+1===selectIndex&&(item.userId===selectUser.userId || selectAll)?'#f3ff52':'')}"
|
|
|
|
|
|
>{{item.attendances.length>0 && item.attendances.findIndex(i=>i.attendanceDay === index2+1) >-1 && item.attendances[item.attendances.findIndex(i=>i.attendanceDay === index2+1)].projectId===0?'出差':''}}</td>
|
2024-11-05 18:55:58 +08:00
|
|
|
|
</tr>
|
|
|
|
|
|
</tbody>
|
|
|
|
|
|
</table>
|
|
|
|
|
|
</el-col>
|
2024-11-29 14:45:56 +08:00
|
|
|
|
<el-col :span="8">
|
|
|
|
|
|
|
2024-12-04 13:45:45 +08:00
|
|
|
|
<div>
|
|
|
|
|
|
|
|
|
|
|
|
<el-header> 操作栏</el-header>
|
|
|
|
|
|
<el-card class="box-card">
|
|
|
|
|
|
<el-button @click="removeAttendance" type="danger" plain>取消操作</el-button>
|
|
|
|
|
|
<el-button @click="toTravel" type="warning" plain>出差</el-button>
|
|
|
|
|
|
</el-card>
|
2024-12-15 21:41:23 +08:00
|
|
|
|
<el-card class="box-card" >
|
2024-12-04 13:45:45 +08:00
|
|
|
|
<div slot="" class="">
|
|
|
|
|
|
<span><i class="el-icon-s-order"></i> 项目列表</span>
|
|
|
|
|
|
<!-- <el-button style="float: right; padding: 3px 0" type="text">操作按钮</el-button>-->
|
|
|
|
|
|
</div>
|
2024-12-15 21:41:23 +08:00
|
|
|
|
<div style="height: 250px;overflow: auto">
|
|
|
|
|
|
<div v-for="(item,index) in sortedProjects" style="display: flex;justify-content: space-between;">
|
2024-12-04 13:45:45 +08:00
|
|
|
|
<el-button class="text" :style="{backgroundColor:item.color===''?'':item.color}" @click="signIn(item)">
|
|
|
|
|
|
{{ item.projectName }}
|
|
|
|
|
|
</el-button>
|
|
|
|
|
|
<el-color-picker class="color-picker" v-model="item.color"
|
|
|
|
|
|
@change="changeItemColor(item)"></el-color-picker>
|
|
|
|
|
|
</div>
|
2024-12-15 21:41:23 +08:00
|
|
|
|
</div>
|
2024-12-04 13:45:45 +08:00
|
|
|
|
</el-card>
|
|
|
|
|
|
<el-card class="box-card">
|
|
|
|
|
|
<div slot="" class="">
|
|
|
|
|
|
<span><i class="el-icon-timer"></i>工作时长</span>
|
|
|
|
|
|
<div style="margin: 20px 0 ">
|
|
|
|
|
|
<el-radio-group v-model="timeFlag">
|
|
|
|
|
|
<el-radio :label="0">天计</el-radio>
|
|
|
|
|
|
<el-radio :label="1">小时计</el-radio>
|
|
|
|
|
|
</el-radio-group>
|
2024-11-29 14:45:56 +08:00
|
|
|
|
</div>
|
2024-12-04 13:45:45 +08:00
|
|
|
|
<el-select v-if="timeFlag===0" v-model="form.dayLength" placeholder="请选择工作时长">
|
|
|
|
|
|
<el-option
|
|
|
|
|
|
v-for="dict in dict.type.work_time_length"
|
|
|
|
|
|
:key="dict.value"
|
|
|
|
|
|
:label="dict.label"
|
|
|
|
|
|
:value="dict.value"
|
|
|
|
|
|
></el-option>
|
|
|
|
|
|
</el-select>
|
|
|
|
|
|
|
|
|
|
|
|
<el-select v-if="timeFlag===1" v-model="form.hour" placeholder="请选择工作时长">
|
|
|
|
|
|
<el-option
|
|
|
|
|
|
v-for="dict in dict.type.work_time_length_hour"
|
|
|
|
|
|
:key="dict.value"
|
|
|
|
|
|
:label="dict.label"
|
|
|
|
|
|
:value="dict.value"
|
|
|
|
|
|
></el-option>
|
|
|
|
|
|
</el-select>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</el-card>
|
|
|
|
|
|
</div>
|
2024-11-05 18:55:58 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</el-col>
|
|
|
|
|
|
</el-row>
|
|
|
|
|
|
|
2024-11-16 20:08:00 +08:00
|
|
|
|
<el-row :gutter="20" class="mb8">
|
2024-11-29 14:45:56 +08:00
|
|
|
|
<el-col :span="2">
|
2024-11-16 20:08:00 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<span class="demonstration">计算月份:</span>
|
|
|
|
|
|
</el-col>
|
|
|
|
|
|
<el-col :span="6">
|
2024-11-29 14:45:56 +08:00
|
|
|
|
<div class="block">
|
|
|
|
|
|
<el-date-picker
|
|
|
|
|
|
v-model="date"
|
|
|
|
|
|
type="month"
|
|
|
|
|
|
placeholder="选择日期">
|
|
|
|
|
|
</el-date-picker>
|
|
|
|
|
|
</div>
|
2024-11-16 20:08:00 +08:00
|
|
|
|
</el-col>
|
|
|
|
|
|
<el-col :span="1.5">
|
|
|
|
|
|
|
|
|
|
|
|
<el-button @click="calcWork">计算</el-button>
|
|
|
|
|
|
</el-col>
|
|
|
|
|
|
</el-row>
|
|
|
|
|
|
|
2024-11-29 14:45:56 +08:00
|
|
|
|
<el-row :gutter="20">
|
2024-11-16 20:08:00 +08:00
|
|
|
|
|
|
|
|
|
|
<el-table
|
|
|
|
|
|
:data="userList"
|
|
|
|
|
|
stripe
|
|
|
|
|
|
style="width: 60%">
|
|
|
|
|
|
|
|
|
|
|
|
<el-table-column
|
2024-11-29 14:45:56 +08:00
|
|
|
|
type="index"
|
2024-11-16 20:08:00 +08:00
|
|
|
|
label="序号"
|
|
|
|
|
|
width="180">
|
|
|
|
|
|
</el-table-column>
|
|
|
|
|
|
<el-table-column
|
|
|
|
|
|
prop="nickName"
|
|
|
|
|
|
label="员工姓名"
|
|
|
|
|
|
width="180">
|
|
|
|
|
|
</el-table-column>
|
|
|
|
|
|
|
|
|
|
|
|
<el-table-column label="操作" align="center" class-name="small-padding fixed-width">
|
2024-11-29 14:45:56 +08:00
|
|
|
|
<template slot-scope="scope">
|
2024-11-16 20:08:00 +08:00
|
|
|
|
<el-button
|
|
|
|
|
|
size="mini"
|
|
|
|
|
|
type="text"
|
|
|
|
|
|
icon="el-icon-edit"
|
|
|
|
|
|
v-if="calcFlag"
|
|
|
|
|
|
@click="handleCalc(scope.row)"
|
|
|
|
|
|
v-hasPermi="['oa:oaWarehouse:edit']"
|
2024-11-29 14:45:56 +08:00
|
|
|
|
>查看考勤结果
|
|
|
|
|
|
</el-button>
|
2024-11-16 20:08:00 +08:00
|
|
|
|
<el-button
|
|
|
|
|
|
size="mini"
|
|
|
|
|
|
type="text"
|
|
|
|
|
|
v-else
|
|
|
|
|
|
disabled
|
|
|
|
|
|
icon="el-icon-edit"
|
|
|
|
|
|
@click="handleCalc(scope.row)"
|
|
|
|
|
|
v-hasPermi="['oa:oaWarehouse:edit']"
|
2024-11-29 14:45:56 +08:00
|
|
|
|
>请选择日期计算
|
|
|
|
|
|
</el-button>
|
2024-11-16 20:08:00 +08:00
|
|
|
|
</template>
|
|
|
|
|
|
</el-table-column>
|
|
|
|
|
|
</el-table>
|
|
|
|
|
|
</el-row>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<el-dialog
|
|
|
|
|
|
title="计算结果"
|
|
|
|
|
|
:visible.sync="showCalc"
|
|
|
|
|
|
width="70%"
|
2024-11-29 14:45:56 +08:00
|
|
|
|
>
|
2024-11-16 20:08:00 +08:00
|
|
|
|
|
|
|
|
|
|
<div class="container">
|
2024-11-29 14:45:56 +08:00
|
|
|
|
<h1>员工个人财务与签到报告 - {{ calcUser.nickName }}</h1>
|
2024-11-16 20:08:00 +08:00
|
|
|
|
|
|
|
|
|
|
<!-- 员工基本信息 -->
|
|
|
|
|
|
<div class="employee-info">
|
2024-11-29 14:45:56 +08:00
|
|
|
|
<p><strong>员工姓名:</strong> {{ calcUser.nickName }}</p>
|
2024-11-16 20:08:00 +08:00
|
|
|
|
<p><strong>职位:</strong> 员工</p>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- 月度工作情况表格 -->
|
2024-11-29 14:45:56 +08:00
|
|
|
|
<h2>{{ date.getMonth() }} 月度工作签到情况</h2>
|
2024-11-16 20:08:00 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<el-descriptions class="margin-top" title="报告详情" :column="3" :size="size" border>
|
|
|
|
|
|
<template slot="extra">
|
2024-11-29 14:45:56 +08:00
|
|
|
|
<div>总工作时长(天):{{ calcResultItem.workTimes }}</div>
|
2024-11-16 20:08:00 +08:00
|
|
|
|
</template>
|
|
|
|
|
|
<el-descriptions-item>
|
|
|
|
|
|
<template slot="label">
|
|
|
|
|
|
<i class="el-icon-user"></i>
|
|
|
|
|
|
员工姓名
|
|
|
|
|
|
</template>
|
2024-11-29 14:45:56 +08:00
|
|
|
|
{{ calcUser.nickName }}
|
2024-11-16 20:08:00 +08:00
|
|
|
|
</el-descriptions-item>
|
|
|
|
|
|
<el-descriptions-item>
|
|
|
|
|
|
<template slot="label">
|
|
|
|
|
|
<i class="el-icon-mobile-phone"></i>
|
|
|
|
|
|
人力成本
|
|
|
|
|
|
</template>
|
2024-11-29 14:45:56 +08:00
|
|
|
|
{{ calcUser.laborCost }}
|
2024-11-16 20:08:00 +08:00
|
|
|
|
</el-descriptions-item>
|
|
|
|
|
|
<el-descriptions-item>
|
|
|
|
|
|
<template slot="label">
|
|
|
|
|
|
|
|
|
|
|
|
当月估计(¥)
|
|
|
|
|
|
</template>
|
2024-11-29 14:45:56 +08:00
|
|
|
|
{{ calcUser.laborCost * calcResultItem.workTimes }}
|
2024-11-16 20:08:00 +08:00
|
|
|
|
</el-descriptions-item>
|
|
|
|
|
|
</el-descriptions>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<el-table
|
|
|
|
|
|
:data="calcResultAttendances"
|
|
|
|
|
|
stripe
|
|
|
|
|
|
style="width: 100%">
|
|
|
|
|
|
<el-table-column
|
|
|
|
|
|
prop="projectName"
|
|
|
|
|
|
label="项目名"
|
|
|
|
|
|
width="180">
|
2024-12-04 13:45:45 +08:00
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
|
<div>{{scope.row.projectId===0?'出差':scope.row.projectName}}</div>
|
|
|
|
|
|
</template>
|
2024-11-16 20:08:00 +08:00
|
|
|
|
</el-table-column>
|
|
|
|
|
|
<el-table-column
|
|
|
|
|
|
prop="count"
|
|
|
|
|
|
label="签到(天)"
|
|
|
|
|
|
width="180">
|
|
|
|
|
|
</el-table-column>
|
|
|
|
|
|
<el-table-column
|
|
|
|
|
|
prop="workTimes"
|
|
|
|
|
|
label="工作时长(天)">
|
|
|
|
|
|
</el-table-column>
|
2024-12-04 13:45:45 +08:00
|
|
|
|
<el-table-column
|
|
|
|
|
|
prop="hourWorkTimes"
|
|
|
|
|
|
label="工作时长(小时计)">
|
|
|
|
|
|
</el-table-column>
|
2024-11-16 20:08:00 +08:00
|
|
|
|
</el-table>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<div class="footer">
|
2024-12-04 13:45:45 +08:00
|
|
|
|
<p style="color: red">注:小时计与天计为单独记录计算</p>
|
2024-11-16 20:08:00 +08:00
|
|
|
|
<p>© 2024 财务与签到报告 | 由公司财务部门生成</p>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<span slot="footer" class="dialog-footer">
|
|
|
|
|
|
<el-button type="primary" @click="showCalc = false">关闭</el-button>
|
|
|
|
|
|
</span>
|
|
|
|
|
|
</el-dialog>
|
|
|
|
|
|
|
2024-11-05 18:55:58 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
|
|
|
|
|
|
|
import {listWorker} from "@/api/system/user";
|
|
|
|
|
|
import {listProject, updateProject} from "@/api/oa/project";
|
|
|
|
|
|
import {listOaAttendance} from "@/api/oa/oaAttendance";
|
2024-11-29 14:45:56 +08:00
|
|
|
|
import {
|
|
|
|
|
|
addBatchOaAttendance,
|
|
|
|
|
|
addOaAttendance,
|
|
|
|
|
|
delOaAttendance,
|
|
|
|
|
|
getDateLength,
|
|
|
|
|
|
workCalc,
|
|
|
|
|
|
delOaAttendanceAll
|
|
|
|
|
|
} from "../../../api/oa/oaAttendance";
|
2024-11-16 20:08:00 +08:00
|
|
|
|
import item from "../../../layout/components/Sidebar/Item.vue";
|
2024-11-05 18:55:58 +08:00
|
|
|
|
|
|
|
|
|
|
export default {
|
|
|
|
|
|
name: "Project",
|
2024-11-29 14:45:56 +08:00
|
|
|
|
dicts: ['work_time_length', 'work_time_length_hour'],
|
2024-11-05 18:55:58 +08:00
|
|
|
|
data() {
|
|
|
|
|
|
return {
|
|
|
|
|
|
// 选择索引
|
|
|
|
|
|
selectIndex: new Date().getDate(),
|
|
|
|
|
|
// 用户列表
|
|
|
|
|
|
userList: [],
|
2024-11-16 20:08:00 +08:00
|
|
|
|
// 计算结果
|
2024-11-29 14:45:56 +08:00
|
|
|
|
calcFlag: false,
|
2024-11-05 18:55:58 +08:00
|
|
|
|
// 项目列表
|
|
|
|
|
|
projectList: [],
|
|
|
|
|
|
loading: true,
|
|
|
|
|
|
selectHead: new Date().getDate(),
|
2024-11-16 20:08:00 +08:00
|
|
|
|
// 当前月的天数
|
2024-11-29 14:45:56 +08:00
|
|
|
|
dateLength: 31,
|
2024-11-16 20:08:00 +08:00
|
|
|
|
// 计算提交月份
|
2024-11-29 14:45:56 +08:00
|
|
|
|
date: new Date(),
|
2024-11-05 18:55:58 +08:00
|
|
|
|
// 提交表单
|
|
|
|
|
|
form: {},
|
2024-11-29 14:45:56 +08:00
|
|
|
|
showCalc: false,
|
2024-11-05 18:55:58 +08:00
|
|
|
|
// 查询参数
|
|
|
|
|
|
userQueryParams: {
|
|
|
|
|
|
pageNum: 1,
|
|
|
|
|
|
pageSize: 10,
|
|
|
|
|
|
userName: undefined,
|
|
|
|
|
|
phonenumber: undefined,
|
|
|
|
|
|
status: undefined,
|
|
|
|
|
|
deptId: undefined
|
|
|
|
|
|
},
|
2024-11-29 14:45:56 +08:00
|
|
|
|
calcUser: {},
|
|
|
|
|
|
queryParams: {
|
2024-11-05 18:55:58 +08:00
|
|
|
|
pageNum: 1,
|
|
|
|
|
|
pageSize: 50,
|
2024-12-15 21:41:23 +08:00
|
|
|
|
selectTime: new Date(),
|
2024-11-05 18:55:58 +08:00
|
|
|
|
},
|
2024-11-29 14:45:56 +08:00
|
|
|
|
selectArrayIndex: new Date().getDate(),
|
2024-11-05 18:55:58 +08:00
|
|
|
|
timeFlag: 0,
|
|
|
|
|
|
// 项目查询参数
|
|
|
|
|
|
projectQueryParams: {
|
|
|
|
|
|
pageNum: 1,
|
2024-12-15 21:41:23 +08:00
|
|
|
|
pageSize: 99,
|
2024-11-29 14:45:56 +08:00
|
|
|
|
projectStatus: 0,
|
2024-11-05 18:55:58 +08:00
|
|
|
|
projectName: undefined,
|
|
|
|
|
|
projectNum: undefined,
|
|
|
|
|
|
beginTime: undefined,
|
|
|
|
|
|
finishTime: undefined
|
|
|
|
|
|
},
|
|
|
|
|
|
selectUser: {},
|
|
|
|
|
|
// 日期范围
|
|
|
|
|
|
dateRange: [],
|
|
|
|
|
|
selectAll: true,
|
2024-11-29 14:45:56 +08:00
|
|
|
|
calcResult: [],
|
|
|
|
|
|
calcResultItem: {},
|
|
|
|
|
|
calcResultUser: {},
|
|
|
|
|
|
calcResultAttendances: [],
|
|
|
|
|
|
calcResultProject: {},
|
2024-12-15 21:41:23 +08:00
|
|
|
|
|
2024-11-05 18:55:58 +08:00
|
|
|
|
}
|
|
|
|
|
|
},
|
|
|
|
|
|
mounted() {
|
2024-11-16 20:08:00 +08:00
|
|
|
|
|
2024-11-05 18:55:58 +08:00
|
|
|
|
},
|
|
|
|
|
|
created() {
|
2024-11-16 20:08:00 +08:00
|
|
|
|
this.getDate();
|
2024-11-05 18:55:58 +08:00
|
|
|
|
this.getList();
|
|
|
|
|
|
},
|
2024-12-15 21:41:23 +08:00
|
|
|
|
computed:{
|
|
|
|
|
|
sortedProjects() {
|
|
|
|
|
|
let projectList = [...this.projectList];
|
|
|
|
|
|
projectList.sort((a, b) => {
|
|
|
|
|
|
if (a.color && !b.color) return -1;
|
|
|
|
|
|
if (!a.color && b.color) return 1;
|
|
|
|
|
|
return 0;
|
|
|
|
|
|
});
|
|
|
|
|
|
return projectList;
|
|
|
|
|
|
}
|
|
|
|
|
|
},
|
2024-11-05 18:55:58 +08:00
|
|
|
|
|
|
|
|
|
|
methods: {
|
2024-11-16 20:08:00 +08:00
|
|
|
|
|
2024-12-04 13:45:45 +08:00
|
|
|
|
// 出差标记
|
|
|
|
|
|
toTravel(){
|
|
|
|
|
|
if (!this.selectAll) {
|
|
|
|
|
|
this.form = {
|
|
|
|
|
|
projectId: 0,
|
|
|
|
|
|
userId: this.selectUser.userId,
|
|
|
|
|
|
attendanceDay: this.selectIndex,
|
|
|
|
|
|
}
|
|
|
|
|
|
addOaAttendance(this.form).then(res => {
|
|
|
|
|
|
this.getList()
|
|
|
|
|
|
this.selectUser = this.selectArrayIndex >= this.userList.length - 1 ? this.selectUser : this.userList[this.selectArrayIndex + 1]
|
|
|
|
|
|
|
|
|
|
|
|
})
|
|
|
|
|
|
} else {
|
|
|
|
|
|
this.form = {
|
|
|
|
|
|
projectId: 0,
|
|
|
|
|
|
attendanceDay: this.selectIndex,
|
|
|
|
|
|
}
|
|
|
|
|
|
// 集体赋予状态
|
|
|
|
|
|
addBatchOaAttendance(this.form).then(res => {
|
|
|
|
|
|
this.getList()
|
|
|
|
|
|
})
|
|
|
|
|
|
}
|
|
|
|
|
|
},
|
|
|
|
|
|
|
2024-11-29 14:45:56 +08:00
|
|
|
|
// 删除签到
|
2024-12-04 13:45:45 +08:00
|
|
|
|
removeAttendance() {
|
|
|
|
|
|
if (!this.selectAll) {
|
|
|
|
|
|
const attendanceId = this.selectUser.attendances.find(item => item.attendanceDay === this.selectIndex).id
|
|
|
|
|
|
delOaAttendance(attendanceId).then(res => {
|
2024-11-29 14:45:56 +08:00
|
|
|
|
this.$modal.msgSuccess("操作成功");
|
|
|
|
|
|
this.getList();
|
|
|
|
|
|
})
|
2024-12-04 13:45:45 +08:00
|
|
|
|
} else {
|
|
|
|
|
|
delOaAttendanceAll(this.selectIndex).then(res => {
|
2024-11-29 14:45:56 +08:00
|
|
|
|
this.$modal.msgSuccess("操作成功");
|
|
|
|
|
|
this.getList();
|
|
|
|
|
|
})
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
2024-11-16 20:08:00 +08:00
|
|
|
|
// 查看计算结果
|
2024-11-29 14:45:56 +08:00
|
|
|
|
handleCalc(row) {
|
2024-11-16 20:08:00 +08:00
|
|
|
|
this.showCalc = true;
|
|
|
|
|
|
this.calcUser = row
|
2024-11-29 14:45:56 +08:00
|
|
|
|
this.calcResultItem = this.calcResult.filter(item => item.sysUser.userId === this.calcUser.userId)[0]
|
2024-11-16 20:08:00 +08:00
|
|
|
|
this.calcResultAttendances = this.calcResultItem.attendances
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
// 计算
|
2024-11-29 14:45:56 +08:00
|
|
|
|
calcWork() {
|
|
|
|
|
|
workCalc(this.date).then(res => {
|
2024-11-16 20:08:00 +08:00
|
|
|
|
this.calcResult = res.data;
|
|
|
|
|
|
this.calcFlag = true;
|
|
|
|
|
|
})
|
|
|
|
|
|
},
|
|
|
|
|
|
|
2024-11-29 14:45:56 +08:00
|
|
|
|
getDate() {
|
2024-11-16 20:08:00 +08:00
|
|
|
|
getDateLength().then(res => {
|
|
|
|
|
|
this.dateLength = res.data;
|
|
|
|
|
|
})
|
|
|
|
|
|
},
|
|
|
|
|
|
|
2024-11-29 14:45:56 +08:00
|
|
|
|
selectAttendDay(item, index, index2) {
|
2024-11-05 18:55:58 +08:00
|
|
|
|
this.selectIndex = index2;
|
|
|
|
|
|
this.selectAll = false;
|
|
|
|
|
|
this.selectUser = item;
|
|
|
|
|
|
this.selectHead = index2
|
|
|
|
|
|
this.selectArrayIndex = index
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
selectMany(index) {
|
|
|
|
|
|
this.selectAll = true;
|
|
|
|
|
|
this.selectIndex = index;
|
|
|
|
|
|
this.selectHead = index
|
|
|
|
|
|
},
|
|
|
|
|
|
/** 查询用户列表 */
|
|
|
|
|
|
getList() {
|
|
|
|
|
|
this.loading = true;
|
2024-11-29 14:45:56 +08:00
|
|
|
|
listOaAttendance(this.queryParams).then(res => {
|
2024-12-15 21:41:23 +08:00
|
|
|
|
this.userList = res.rows;
|
|
|
|
|
|
console.log(this.userList);
|
|
|
|
|
|
this.dateLength = res.total;
|
2024-12-04 13:45:45 +08:00
|
|
|
|
this.loading = false;
|
2024-11-05 18:55:58 +08:00
|
|
|
|
});
|
|
|
|
|
|
listProject(this.projectQueryParams).then(response => {
|
|
|
|
|
|
this.projectList = response.rows;
|
|
|
|
|
|
this.total = response.total;
|
|
|
|
|
|
})
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
changeItemColor(item) {
|
2024-12-04 13:45:45 +08:00
|
|
|
|
updateProject(item).then(res => {
|
2024-11-29 14:45:56 +08:00
|
|
|
|
this.getList();
|
|
|
|
|
|
})
|
|
|
|
|
|
|
2024-11-05 18:55:58 +08:00
|
|
|
|
},
|
2024-11-29 14:45:56 +08:00
|
|
|
|
signIn(project) {
|
2024-11-05 18:55:58 +08:00
|
|
|
|
// 一个签到
|
|
|
|
|
|
if (this.form.dayLength === undefined && this.timeFlag === 0) {
|
2024-11-29 14:45:56 +08:00
|
|
|
|
this.$message({message: '请选择工作时长', type: 'warning'})
|
2024-11-05 18:55:58 +08:00
|
|
|
|
return;
|
|
|
|
|
|
}
|
|
|
|
|
|
if (this.form.hour === undefined && this.timeFlag === 1) {
|
2024-11-29 14:45:56 +08:00
|
|
|
|
this.$message({message: '请选择工作时长', type: 'warning'})
|
2024-11-05 18:55:58 +08:00
|
|
|
|
return;
|
|
|
|
|
|
}
|
2024-11-29 14:45:56 +08:00
|
|
|
|
let time = this.timeFlag === 0 ? this.form.dayLength : this.form.hour
|
2024-11-05 18:55:58 +08:00
|
|
|
|
|
|
|
|
|
|
|
2024-11-29 14:45:56 +08:00
|
|
|
|
if (!this.selectAll) {
|
2024-11-05 18:55:58 +08:00
|
|
|
|
this.form = {
|
2024-11-29 14:45:56 +08:00
|
|
|
|
projectId: project.projectId,
|
|
|
|
|
|
userId: this.selectUser.userId,
|
|
|
|
|
|
attendanceDay: this.selectIndex,
|
|
|
|
|
|
dayLength: this.timeFlag === 0 ? this.form.dayLength : undefined,
|
|
|
|
|
|
hour: this.timeFlag === 1 ? this.form.hour : undefined
|
2024-11-05 18:55:58 +08:00
|
|
|
|
}
|
2024-11-29 14:45:56 +08:00
|
|
|
|
addOaAttendance(this.form).then(res => {
|
|
|
|
|
|
this.selectUser = this.selectArrayIndex >= this.userList.length - 1 ? this.selectUser : this.userList[this.selectArrayIndex + 1]
|
2024-11-05 18:55:58 +08:00
|
|
|
|
this.getList()
|
|
|
|
|
|
})
|
2024-11-29 14:45:56 +08:00
|
|
|
|
} else {
|
2024-11-05 18:55:58 +08:00
|
|
|
|
|
|
|
|
|
|
this.form = {
|
2024-11-29 14:45:56 +08:00
|
|
|
|
projectId: project.projectId,
|
|
|
|
|
|
attendanceDay: this.selectIndex,
|
|
|
|
|
|
dayLength: this.timeFlag === 0 ? this.form.dayLength : undefined,
|
|
|
|
|
|
hour: this.timeFlag === 1 ? this.form.hour : undefined
|
2024-11-05 18:55:58 +08:00
|
|
|
|
}
|
|
|
|
|
|
// 集体赋予状态
|
2024-11-29 14:45:56 +08:00
|
|
|
|
addBatchOaAttendance(this.form).then(res => {
|
2024-11-05 18:55:58 +08:00
|
|
|
|
this.getList()
|
|
|
|
|
|
})
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
};
|
|
|
|
|
|
</script>
|
|
|
|
|
|
<style scoped>
|
|
|
|
|
|
table {
|
|
|
|
|
|
border: 1px solid #000;
|
|
|
|
|
|
table-layout: fixed;
|
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
th {
|
|
|
|
|
|
border: 1px solid;
|
|
|
|
|
|
|
|
|
|
|
|
height: 15px;
|
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
td {
|
|
|
|
|
|
border: 1px solid;
|
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
table {
|
|
|
|
|
|
border-collapse: collapse;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.selectDay {
|
|
|
|
|
|
background-color: #00afff;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.selectBox {
|
|
|
|
|
|
background-color: #f3ff52;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.text {
|
|
|
|
|
|
font-size: 16px;
|
2024-11-29 14:45:56 +08:00
|
|
|
|
width: 70%;
|
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
|
border-bottom: #cccccc 1px dashed;
|
|
|
|
|
|
margin: 5px 0;
|
|
|
|
|
|
}
|
2024-12-04 13:45:45 +08:00
|
|
|
|
|
|
|
|
|
|
.color-picker {
|
2024-11-29 14:45:56 +08:00
|
|
|
|
font-size: 16px;
|
|
|
|
|
|
width: 30%;
|
|
|
|
|
|
|
|
|
|
|
|
|
2024-11-05 18:55:58 +08:00
|
|
|
|
border-bottom: #cccccc 1px dashed;
|
|
|
|
|
|
margin: 5px 0;
|
|
|
|
|
|
}
|
2024-11-29 14:45:56 +08:00
|
|
|
|
|
|
|
|
|
|
.el-header, .el-footer {
|
|
|
|
|
|
background-color: #f6f6f6;
|
|
|
|
|
|
color: #333;
|
|
|
|
|
|
text-align: center;
|
|
|
|
|
|
line-height: 60px;
|
|
|
|
|
|
border-radius: 7px 7px 0 0;
|
|
|
|
|
|
}
|
2024-11-05 18:55:58 +08:00
|
|
|
|
</style>
|