From a7977aac3851fa49a83f0a389221e6b3825dcb0b Mon Sep 17 00:00:00 2001
From: luoyb <412940104@qq.com>
Date: 星期一, 22 四月 2024 19:11:48 +0800
Subject: [PATCH] feat: 将劳资案件改为仲裁案件
---
src/views/user/archivesEdit.vue | 1284 +++++++++++++++++++++++++++++++++++++++------------------
1 files changed, 877 insertions(+), 407 deletions(-)
diff --git a/src/views/user/archivesEdit.vue b/src/views/user/archivesEdit.vue
index bbcdbaa..cb83d3e 100644
--- a/src/views/user/archivesEdit.vue
+++ b/src/views/user/archivesEdit.vue
@@ -4,7 +4,8 @@
:title="title"
width="100%"
height="100vh"
- fullscreen="true"
+ center
+ fullscreen
:close-on-click-modal="false"
:visible.sync="isVisible"
>
@@ -26,7 +27,7 @@
</el-upload>
<!-- <img src="https://ss1.bdstatic.com/70cFvXSh_Q1YnxGkpoWK1HF6hhy/it/u=1333074204,3035391839&fm=26&gp=0.jpg" class="jbxxImg">-->
<div class="title-da">
- 编号:{{ empBaseInfoForm.empNumb }}
+ 档案号:{{ empBaseInfoForm.archivesNumb }}
</div>
</div>
<ul class="jbxx-ul" style="height: 68vh;overflow: auto">
@@ -152,7 +153,7 @@
<div class="item-node" />
<div>
<a href="javascript:void(0)" :class="item=='lzaj'?'light':''" @click="goAnchor('lzaj')">
- 劳资案件
+ 仲裁案件
</a>
</div>
</li>
@@ -190,7 +191,7 @@
<div class="jbxxTitle">
基本信息
<el-button
- style="position:absolute;right: 120px"
+ style="position:absolute;right: 130px"
class="filter-item"
type="primary"
@click.native="gzupdate"
@@ -199,7 +200,7 @@
</el-button>
<el-button
v-if="readon"
- style="position:absolute;right: 120px"
+ style="position:absolute;right: 130px"
class="filter-item"
type="primary"
@click.native="gzupdate1"
@@ -207,12 +208,12 @@
保存
</el-button>
<el-button
- style="position:absolute;right: 40px"
+ style="position:absolute;right: 20px"
class="filter-item"
type="primary"
@click="ExportSavePdf"
>
- 导出
+ 导出档案
</el-button>
</div>
@@ -220,8 +221,12 @@
<el-form ref="empBaseInfoForm" :model="empBaseInfoForm" class="formjbxx" label-width="150px">
<el-row style="width: 100%;">
<el-col :span="8">
- <el-form-item label="档案号" prop="archivesNumb">
- <el-input v-model="empBaseInfoForm.archivesNumb" style="width: 100%;" :disabled="readon ? false : true" />
+ <el-form-item label="编号" prop="empNumb">
+ <el-input
+ v-model="empBaseInfoForm.empNumb"
+ style="width: 100%;"
+ :disabled="readon ? false : true"
+ />
</el-form-item>
</el-col>
<el-col :span="8">
@@ -243,7 +248,11 @@
<el-row>
<el-col :span="8">
<el-form-item label="性别" prop="sex">
- <el-select v-model="empBaseInfoForm.sex" placeholder="请选择性别" :disabled="readon ? false : true">
+ <el-select
+ v-model="empBaseInfoForm.sex"
+ placeholder="请选择性别"
+ :disabled="readon ? false : true"
+ >
<el-option
v-for="dict in sexOptions"
:key="dict.dicItemCode"
@@ -283,7 +292,11 @@
<el-row>
<el-col :span="8">
<el-form-item label="员工类别" prop="empType">
- <el-select v-model="empBaseInfoForm.empType" placeholder="请选择员工类型" :disabled="readon ? false : true">
+ <el-select
+ v-model="empBaseInfoForm.empType"
+ placeholder="请选择员工类型"
+ :disabled="readon ? false : true"
+ >
<el-option
v-for="dict in empTypeOptions"
:key="dict.dicItemCode"
@@ -295,7 +308,12 @@
</el-col>
<el-col :span="8">
<el-form-item label="民族" prop="nation">
- <el-select v-model="empBaseInfoForm.nation" placeholder="请选择民族" :disabled="readon ? false : true">
+ <el-select
+ v-model="empBaseInfoForm.nation"
+ filterable
+ placeholder="请选择民族"
+ :disabled="readon ? false : true"
+ >
<el-option
v-for="dict in nationOptions"
:key="dict.dicItemCode"
@@ -315,7 +333,11 @@
<el-row>
<el-col :span="8">
<el-form-item label="婚姻状态" prop="marriage">
- <el-select v-model="empBaseInfoForm.marriage" placeholder="请选择婚姻状态" :disabled="readon ? false : true">
+ <el-select
+ v-model="empBaseInfoForm.marriage"
+ placeholder="请选择婚姻状态"
+ :disabled="readon ? false : true"
+ >
<el-option
v-for="dict in marriageOptions"
:key="dict.dicItemCode"
@@ -346,7 +368,11 @@
<el-row>
<el-col :span="8">
<el-form-item label="政治面貌" prop="politics">
- <el-select v-model="empBaseInfoForm.politics" placeholder="请选择政治面貌" :disabled="readon ? false : true">
+ <el-select
+ v-model="empBaseInfoForm.politics"
+ placeholder="请选择政治面貌"
+ :disabled="readon ? false : true"
+ >
<el-option
v-for="dict in statusOptions"
:key="dict.dicItemCode"
@@ -369,7 +395,11 @@
</el-col>
<el-col :span="8">
<el-form-item label="最高学历" prop="education">
- <el-select v-model="empBaseInfoForm.education" placeholder="请选择最高学历" :disabled="readon ? false : true">
+ <el-select
+ v-model="empBaseInfoForm.education"
+ placeholder="请选择最高学历"
+ :disabled="readon ? false : true"
+ >
<el-option
v-for="dict in educationOptions"
:key="dict.dicItemCode"
@@ -384,7 +414,11 @@
<el-row>
<el-col :span="8">
<el-form-item label="籍贯" prop="nativePlaceName">
- <el-select v-model="empBaseInfoForm.nativePlace" placeholder="请选择最高学历" :disabled="readon ? false : true">
+ <el-select
+ v-model="empBaseInfoForm.nativePlace"
+ placeholder="请选择籍贯"
+ :disabled="readon ? false : true"
+ >
<el-option
v-for="dict in nativePlaceOptions"
:key="dict.dicItemCode"
@@ -419,7 +453,11 @@
</el-col>
<el-col :span="8">
<el-form-item label="档案情况" prop="archivesStatus">
- <el-select v-model="empBaseInfoForm.archivesStatus" placeholder="请选择档案情况" :disabled="readon ? false : true">
+ <el-select
+ v-model="empBaseInfoForm.archivesStatus"
+ placeholder="请选择档案情况"
+ :disabled="readon ? false : true"
+ >
<el-option
v-for="dict in archivesStatusOptions"
:key="dict.dicItemCode"
@@ -463,8 +501,12 @@
</el-form-item>
</el-col>
<el-col :span="8">
- <el-form-item label="保险类型" prop="insuranceType">
- <el-select v-model="empBaseInfoForm.insuranceType" placeholder="请选择保险类型" :disabled="readon ? false : true">
+ <el-form-item label="社保档位" prop="insuranceType">
+ <el-select
+ v-model="empBaseInfoForm.insuranceType"
+ placeholder="请选择社保档位"
+ :disabled="readon ? false : true"
+ >
<el-option
v-for="dict in insuranceTypeOptions"
:key="dict.dicItemCode"
@@ -494,7 +536,11 @@
</el-col>
<el-col :span="8">
<el-form-item label="工作证" prop="empCardStatus">
- <el-select v-model="empBaseInfoForm.empCardStatus" placeholder="请选择工作证" :disabled="readon ? false : true">
+ <el-select
+ v-model="empBaseInfoForm.empCardStatus"
+ placeholder="请选择工作证"
+ :disabled="readon ? false : true"
+ >
<el-option
v-for="dict in empCardStatusOptions"
:key="dict.dicItemCode"
@@ -508,18 +554,22 @@
</el-row>
<el-row>
<el-col :span="8">
- <el-form-item label="家庭成员及关系" prop="family">
+ <el-form-item label="家庭成员及关系1" prop="family">
<el-input v-model="empBaseInfoForm.family" :disabled="readon ? false : true" />
</el-form-item>
</el-col>
<el-col :span="8">
- <el-form-item label="紧急联系电话" prop="urgencyPhone">
+ <el-form-item label="家庭成员及关系2" prop="urgencyPhone">
<el-input v-model="empBaseInfoForm.urgencyPhone" :disabled="readon ? false : true" />
</el-form-item>
</el-col>
<el-col :span="8">
<el-form-item label="员工手册" prop="handbookStatus">
- <el-select v-model="empBaseInfoForm.handbookStatus" placeholder="请选择员工手册" :disabled="readon ? false : true">
+ <el-select
+ v-model="empBaseInfoForm.handbookStatus"
+ placeholder="请选择员工手册"
+ :disabled="readon ? false : true"
+ >
<el-option
v-for="dict in handbookStatusOptions"
:key="dict.dicItemCode"
@@ -531,7 +581,12 @@
</el-col>
<el-col :span="8">
<el-form-item label="相关证件" prop="certificateList">
- <el-select v-model="empBaseInfoForm.certificateList" placeholder="请选择相关证件" :disabled="readon ? false : true">
+ <el-select
+ v-model="empBaseInfoForm.certificateList"
+ multiple
+ placeholder="请选择相关证件"
+ :disabled="readon ? false : true"
+ >
<el-option
v-for="dict in certificateListOptions"
:key="dict.dicItemCode"
@@ -559,24 +614,29 @@
:key="tableKey"
:data="workExperienceData"
stripe
- :header-cell-style="{'height':'5.3vh','background-color':'#e6e6e6'}"
+ border
+ :header-cell-style="{'height':'5.3vh','background-color':'#e6e6e6','text-align':'center'}"
+ :cell-style="{padding:'7px 0','text-align':'center'}"
:highlight-current-row="true"
@selection-change="onworkExperienceDataselection"
>
- <el-table-column show-overflow-tooltip="true" type="index" label="序号" align="center" width="55">
+ <el-table-column show-overflow-tooltip type="index" label="序号" align="center" width="55">
<template slot-scope="scope">
<span v-text="getIndex(scope.$index)" />
</template>
</el-table-column>
- <el-table-column v-if="fsnumShow" show-overflow-tooltip="true" prop="workExperienceId" label="工作单位" />
- <el-table-column show-overflow-tooltip="true" prop="beginDate" label="开始日期" />
- <el-table-column show-overflow-tooltip="true" prop="endDate" label="结束日期" />
- <el-table-column show-overflow-tooltip="true" prop="workUnit" label="工作单位" />
- <el-table-column show-overflow-tooltip="true" prop="jobContent" label="主要工作内容" />
- <el-table-column show-overflow-tooltip="true" fixed="right" label="操作" width="120">
+ <el-table-column v-if="fsnumShow" show-overflow-tooltip prop="workExperienceId" label="工作单位" />
+ <el-table-column show-overflow-tooltip prop="beginDate" label="开始日期" />
+ <el-table-column show-overflow-tooltip prop="endDate" label="结束日期" />
+ <el-table-column show-overflow-tooltip prop="workUnit" label="工作单位" />
+ <el-table-column show-overflow-tooltip prop="jobContent" label="主要工作内容" />
+ <el-table-column show-overflow-tooltip fixed="right" label="操作" width="120">
<template slot-scope="scope">
- <span class="table-button" @click="editWorkExperience(scope.row)">编辑</span>
- <span class="table-button" @click="singleDelete(scope.row, 'workExperienceDataselection')">删除</span>
+ <span class="table-button" @click="editWorkExperience(scope.row,1)">编辑</span>
+ <span
+ class="table-button"
+ @click="singleDelete(scope.row, 'workExperienceDataselection')"
+ >删除</span>
</template>
</el-table-column>
</el-table>
@@ -585,7 +645,7 @@
:total="workExperienceDatatotal"
:page.sync="pagination.num"
:limit.sync="pagination.size"
- @pagination="initList"
+ @pagination="initList()"
/>
</div>
</div>
@@ -602,38 +662,52 @@
ref="physicalExamTable"
:data="physicalExamData"
stripe
- :header-cell-style="{'height':'5.3vh','background-color':'#e6e6e6'}"
+ border
+ :header-cell-style="{'height':'5.3vh','background-color':'#e6e6e6','text-align':'center'}"
+ :cell-style="{padding:'7px 0','text-align':'center'}"
style="width: 100%;"
@selection-change="onphysicalExamDataselection"
>
- <el-table-column show-overflow-tooltip="true" type="index" label="序号" align="center" width="55">
+ <el-table-column show-overflow-tooltip type="index" label="序号" align="center" width="55">
<template slot-scope="scope">
<span v-text="getIndex(scope.$index)" />
</template>
</el-table-column>
- <el-table-column show-overflow-tooltip="true" fixed="right" label="操作" width="120">
+ <el-table-column show-overflow-tooltip fixed="right" label="操作" width="120">
<template slot-scope="scope">
- <span class="table-button" @click="editPhysicalExam(scope.row)">编辑</span>
+ <span class="table-button" @click="editPhysicalExam(scope.row,2)">编辑</span>
<span class="table-button" @click="singleDelete(scope.row, 'physicalExamDataselection')">删除</span>
</template>
</el-table-column>
- <el-table-column v-if="fsnumShow" show-overflow-tooltip="true" prop="physicalExamId" label="" />
- <el-table-column show-overflow-tooltip="true" prop="hospital" label="体检医院" />
- <el-table-column show-overflow-tooltip="true" prop="physicalExamDate" label="体检日期" width="120" />
- <el-table-column show-overflow-tooltip="true" prop="physicalExamType" label="体检类型" width="120" :formatter="typeFormat" />
- <el-table-column show-overflow-tooltip="true" prop="bloodPressure" label="血压" width="120" />
- <el-table-column show-overflow-tooltip="true" prop="transaminase" label="转氨酶" width="120" />
- <el-table-column show-overflow-tooltip="true" prop="ecg" label="心电图" width="120" :formatter="ecgNameFormat" />
- <el-table-column show-overflow-tooltip="true" prop="conclusion" label="体检结论" />
- <el-table-column show-overflow-tooltip="true" prop="reviewRecord" label="复查记录" width="120" />
- <el-table-column show-overflow-tooltip="true" prop="remark" label="备注" />
+ <el-table-column v-if="fsnumShow" show-overflow-tooltip prop="physicalExamId" label="" />
+ <el-table-column show-overflow-tooltip prop="hospital" label="体检医院" width="150" />
+ <el-table-column show-overflow-tooltip prop="physicalExamDate" label="体检日期" width="140" />
+ <el-table-column
+ show-overflow-tooltip
+ prop="physicalExamType"
+ label="体检类型"
+ width="140"
+ :formatter="typeFormat"
+ />
+ <el-table-column show-overflow-tooltip prop="bloodPressure" label="血压" width="140" />
+ <el-table-column show-overflow-tooltip prop="transaminase" label="转氨酶" width="140" />
+ <el-table-column
+ show-overflow-tooltip
+ prop="ecg"
+ label="心电图"
+ width="140"
+ :formatter="ecgNameFormat"
+ />
+ <el-table-column show-overflow-tooltip prop="conclusion" label="体检结论" />
+ <el-table-column show-overflow-tooltip prop="reviewRecord" label="复查记录" width="140" />
+ <el-table-column show-overflow-tooltip prop="remark" label="备注" />
</el-table>
<pagination
v-show="physicalExamDatatotal>0"
:total="physicalExamDatatotal"
:page.sync="pagination.num"
:limit.sync="pagination.size"
- @pagination="initphysicalExamData"
+ @pagination="initphysicalExamData()"
/>
</div>
</div>
@@ -650,34 +724,42 @@
ref="contractInfoTable"
:data="contractInfoData"
stripe
- :header-cell-style="{'height':'5.3vh','background-color':'#e6e6e6'}"
+ border
+ :header-cell-style="{'height':'5.3vh','background-color':'#e6e6e6','text-align':'center'}"
+ :cell-style="{padding:'7px 0','text-align':'center'}"
style="width: 100%;"
@selection-change="oncontractInfoDataselection"
>
- <el-table-column show-overflow-tooltip="true" type="index" label="序号" align="center" width="55">
+ <el-table-column show-overflow-tooltip type="index" label="序号" align="center" width="55">
<template slot-scope="scope">
<span v-text="getIndex(scope.$index)" />
</template>
</el-table-column>
- <el-table-column show-overflow-tooltip="true" fixed="right" label="操作" width="120">
+ <el-table-column show-overflow-tooltip fixed="right" label="操作" width="120">
<template slot-scope="scope">
- <span class="table-button" @click="editContractInfo(scope.row)">编辑</span>
+ <span class="table-button" @click="editContractInfo(scope.row,3)">编辑</span>
<span class="table-button" @click="singleDelete(scope.row, 'contractInfoDataselection')">删除</span>
</template>
</el-table-column>
- <el-table-column v-if="fsnumShow" show-overflow-tooltip="true" prop="contractId" label="" />
- <el-table-column show-overflow-tooltip="true" prop="signingDate" label="合同签订日期" />
- <el-table-column show-overflow-tooltip="true" prop="endDate" label="合同结束日期" />
- <el-table-column show-overflow-tooltip="true" prop="contractPeriod" label="合同期限(年)" />
- <el-table-column show-overflow-tooltip="true" prop="contractStatus" label="合同状态" :formatter="contractStatusFormat" />
- <el-table-column show-overflow-tooltip="true" prop="transactor" label="合同办理人" />
+ <el-table-column v-if="fsnumShow" show-overflow-tooltip prop="contractId" label="" />
+ <el-table-column show-overflow-tooltip prop="signingDate" label="合同签订日期" />
+ <el-table-column show-overflow-tooltip prop="endDate" label="合同结束日期" />
+ <el-table-column show-overflow-tooltip prop="contractPeriod" label="合同期限(年)" />
+ <el-table-column
+ show-overflow-tooltip
+ prop="contractStatus"
+ label="合同状态"
+ :formatter="contractStatusFormat"
+ />
+ <el-table-column show-overflow-tooltip prop="transactor" label="合同办理人" />
+ <el-table-column show-overflow-tooltip prop="remark" label="备注" />
</el-table>
<pagination
v-show="contractInfoDatatotal>0"
:total="contractInfoDatatotal"
:page.sync="pagination.num"
:limit.sync="pagination.size"
- @pagination="initcontractInfoData"
+ @pagination="initcontractInfoData()"
/>
</div>
</div>
@@ -690,28 +772,36 @@
ref="jobChangeTable"
:data="jobChangeData"
stripe
- :header-cell-style="{'height':'5.3vh','background-color':'#e6e6e6'}"
+ border
+ :header-cell-style="{'height':'5.3vh','background-color':'#e6e6e6','text-align':'center'}"
+ :cell-style="{padding:'7px 0','text-align':'center'}"
style="width: 100%;"
>
- <el-table-column show-overflow-tooltip="true" type="index" label="序号" align="center" width="55">
+ <el-table-column show-overflow-tooltip type="index" label="序号" align="center" width="55">
<template slot-scope="scope">
<span v-text="getIndex(scope.$index)" />
</template>
</el-table-column>
- <el-table-column show-overflow-tooltip="true" prop="newDeptName" label="现部门" />
- <el-table-column show-overflow-tooltip="true" prop="newJobName" label="现岗位" />
- <el-table-column show-overflow-tooltip="true" prop="empName" label="姓名" width="180" />
- <el-table-column show-overflow-tooltip="true" prop="oldDeptName" label="原部门" />
- <el-table-column show-overflow-tooltip="true" prop="oldJobName" label="原岗位" />
- <el-table-column show-overflow-tooltip="true" prop="changeDate" label="调岗日期" />
- <el-table-column show-overflow-tooltip="true" prop="changeType" label="调岗类型" :formatter="changeTypeFormat" />
+ <el-table-column show-overflow-tooltip prop="allDeptName" label="现部门" />
+ <el-table-column show-overflow-tooltip prop="newJobName" label="现岗位" />
+ <el-table-column show-overflow-tooltip prop="empName" label="姓名" width="180" />
+ <el-table-column show-overflow-tooltip prop="oldDeptName" label="原部门" />
+ <el-table-column show-overflow-tooltip prop="oldJobName" label="原岗位" />
+ <el-table-column show-overflow-tooltip prop="changeDate" label="调岗日期" />
+ <el-table-column
+ show-overflow-tooltip
+ prop="changeType"
+ label="调岗类型"
+ :formatter="changeTypeFormat"
+ />
+ <el-table-column show-overflow-tooltip prop="changeReason" label="调岗理由" />
</el-table>
<pagination
v-show="jobChangeDatatotal>0"
:total="jobChangeDatatotal"
:page.sync="pagination.num"
:limit.sync="pagination.size"
- @pagination="initjobChangeData"
+ @pagination="initjobChangeData()"
/>
</div>
</div>
@@ -728,36 +818,38 @@
ref="leaveInfoTable"
:data="leaveInfoData"
stripe
- :header-cell-style="{'height':'5.3vh','background-color':'#e6e6e6'}"
+ border
+ :header-cell-style="{'height':'5.3vh','background-color':'#e6e6e6','text-align':'center'}"
+ :cell-style="{padding:'7px 0','text-align':'center'}"
style="width: 100%;"
@selection-change="onleaveInfoDataselection"
>
- <el-table-column show-overflow-tooltip="true" type="index" label="序号" align="center" width="55">
+ <el-table-column show-overflow-tooltip type="index" label="序号" align="center" width="55">
<template slot-scope="scope">
<span v-text="getIndex(scope.$index)" />
</template>
</el-table-column>
- <el-table-column show-overflow-tooltip="true" fixed="right" label="操作" width="120">
+ <el-table-column show-overflow-tooltip fixed="right" label="操作" width="120">
<template slot-scope="scope">
- <span class="table-button" @click="editLeaveInfo(scope.row)">编辑</span>
- <span class="table-button" @click="singleDelete(scope.row, 'onleaveInfoDataselection')">删除</span>
+ <span class="table-button" @click="editLeaveInfo(scope.row,5)">编辑</span>
+ <span class="table-button" @click="singleDelete(scope.row, 'leaveInfoDataselection')">删除</span>
</template>
</el-table-column>
- <el-table-column v-if="fsnumShow" show-overflow-tooltip="true" prop="leaveId" label="" />
- <el-table-column show-overflow-tooltip="true" prop="beginTime" label="开始时间" width="100" />
- <el-table-column show-overflow-tooltip="true" prop="endTime" label="结束时间" width="100" />
- <el-table-column show-overflow-tooltip="true" prop="leaveDay" label="请假天数" width="100" />
- <el-table-column show-overflow-tooltip="true" prop="leaveType" label="请假类型" :formatter="leaveTypeFormat" />
- <el-table-column show-overflow-tooltip="true" prop="returnDate" label="到岗时间" width="180" />
- <el-table-column show-overflow-tooltip="true" prop="reporter" label="报备人" width="100" />
- <el-table-column show-overflow-tooltip="true" prop="remark" label="备注" />
+ <el-table-column v-if="fsnumShow" show-overflow-tooltip prop="leaveId" label="" />
+ <el-table-column show-overflow-tooltip prop="beginTime" label="开始时间" width="180" />
+ <el-table-column show-overflow-tooltip prop="endTime" label="结束时间" width="180" />
+ <el-table-column show-overflow-tooltip prop="leaveDay" label="请假天数" width="100" />
+ <el-table-column show-overflow-tooltip prop="leaveType" label="请假类型" :formatter="leaveTypeFormat" />
+ <el-table-column show-overflow-tooltip prop="returnDate" label="到岗时间" width="180" />
+ <el-table-column show-overflow-tooltip prop="reporter" label="报备人" width="100" />
+ <el-table-column show-overflow-tooltip prop="remark" label="备注" />
</el-table>
<pagination
v-show="leaveInfoDatatotal>0"
:total="leaveInfoDatatotal"
:page.sync="pagination.num"
:limit.sync="pagination.size"
- @pagination="initleaveInfoData"
+ @pagination="initleaveInfoData()"
/>
</div>
</div>
@@ -774,33 +866,35 @@
ref="resignTable"
:data="resignData"
stripe
- :header-cell-style="{'height':'5.3vh','background-color':'#e6e6e6'}"
+ border
+ :header-cell-style="{'height':'5.3vh','background-color':'#e6e6e6','text-align':'center'}"
+ :cell-style="{padding:'7px 0','text-align':'center'}"
style="width: 100%;"
@selection-change="onresignDataselection"
>
- <el-table-column show-overflow-tooltip="true" type="index" label="序号" align="center" width="55">
+ <el-table-column show-overflow-tooltip type="index" label="序号" align="center" width="55">
<template slot-scope="scope">
<span v-text="getIndex(scope.$index)" />
</template>
</el-table-column>
- <el-table-column show-overflow-tooltip="true" fixed="right" label="操作" width="120">
+ <el-table-column show-overflow-tooltip fixed="right" label="操作" width="120">
<template slot-scope="scope">
- <span class="table-button" @click="editResign(scope.row)">编辑</span>
- <span class="table-button" @click="singleDelete(scope.row, 'onresignDataselection')">删除</span>
+ <span class="table-button" @click="editResign(scope.row,5)">编辑</span>
+ <span class="table-button" @click="singleDelete(scope.row, 'resignDataselection')">删除</span>
</template>
</el-table-column>
- <el-table-column v-if="fsnumShow" show-overflow-tooltip="true" prop="resignId" label="" />
- <el-table-column show-overflow-tooltip="true" prop="applayDate" label="辞职申请日期" width="180" />
- <el-table-column show-overflow-tooltip="true" prop="reason" label="辞职事由" width="180" />
- <el-table-column show-overflow-tooltip="true" prop="reporter" label="汇报人" width="180" />
- <el-table-column show-overflow-tooltip="true" prop="remark" label="备注" />
+ <el-table-column v-if="fsnumShow" show-overflow-tooltip prop="resignId" label="" />
+ <el-table-column show-overflow-tooltip prop="applayDate" label="辞职申请日期" />
+ <el-table-column show-overflow-tooltip prop="reason" label="辞职事由" />
+ <el-table-column show-overflow-tooltip prop="reporter" label="汇报人" />
+ <el-table-column show-overflow-tooltip prop="remark" label="备注" />
</el-table>
<pagination
v-show="resignDatatotal>0"
:total="resignDatatotal"
:page.sync="pagination.num"
:limit.sync="pagination.size"
- @pagination="initresignData"
+ @pagination="initresignData()"
/>
</div>
</div>
@@ -817,37 +911,42 @@
ref="dimissionAttendTable"
:data="dimissionAttendData"
stripe
- :header-cell-style="{'height':'5.3vh','background-color':'#e6e6e6'}"
+ border
+ :header-cell-style="{'height':'5.3vh','background-color':'#e6e6e6','text-align':'center'}"
+ :cell-style="{padding:'7px 0','text-align':'center'}"
style="width: 100%;"
@selection-change="ondimissionAttendDataselection"
>
- <el-table-column show-overflow-tooltip="true" type="index" label="序号" align="center" width="55">
+ <el-table-column show-overflow-tooltip type="index" label="序号" align="center" width="55">
<template slot-scope="scope">
<span v-text="getIndex(scope.$index)" />
</template>
</el-table-column>
- <el-table-column show-overflow-tooltip="true" fixed="right" label="操作" width="120">
+ <el-table-column show-overflow-tooltip fixed="right" label="操作" width="120">
<template slot-scope="scope">
- <span class="table-button" @click="editDimissionAttend(scope.row)">编辑</span>
- <span class="table-button" @click="singleDelete(scope.row, 'dimissionAttendDataselection')">删除</span>
+ <span class="table-button" @click="editDimissionAttend(scope.row,6)">编辑</span>
+ <span
+ class="table-button"
+ @click="singleDelete(scope.row, 'dimissionAttendDataselection')"
+ >删除</span>
</template>
</el-table-column>
- <el-table-column v-if="fsnumShow" show-overflow-tooltip="true" prop="dimissionAttendId" label="" />
- <el-table-column show-overflow-tooltip="true" prop="attendMonth" label="离职考勤月份" width="120" />
- <el-table-column show-overflow-tooltip="true" prop="attendDays" label="出勤天数" width="120" />
- <el-table-column show-overflow-tooltip="true" prop="overtimeDay" label="加班(天)" width="120" />
- <el-table-column show-overflow-tooltip="true" prop="overtimeHour" label="加班(小时)" width="120" />
- <el-table-column show-overflow-tooltip="true" prop="deduct" label="有无代扣款项" width="180" />
- <el-table-column show-overflow-tooltip="true" prop="leaveDay" label="请假(天)" width="120" />
- <el-table-column show-overflow-tooltip="true" prop="absenteeism" label="旷工(天)" width="120" />
- <el-table-column show-overflow-tooltip="true" prop="remark" label="备注" />
+ <el-table-column v-if="fsnumShow" show-overflow-tooltip prop="dimissionAttendId" label="" />
+ <el-table-column show-overflow-tooltip prop="attendMonth" label="离职考勤月份" />
+ <el-table-column show-overflow-tooltip prop="attendDays" label="出勤天数" width="150" />
+ <el-table-column show-overflow-tooltip prop="overtimeDay" label="加班(天)" width="150" />
+ <el-table-column show-overflow-tooltip prop="overtimeHour" label="加班(小时)" />
+ <el-table-column show-overflow-tooltip prop="deduct" label="有无代扣款项" width="180" />
+ <el-table-column show-overflow-tooltip prop="leaveDay" label="请假(天)" />
+ <el-table-column show-overflow-tooltip prop="absenteeism" label="旷工(天)" />
+ <el-table-column show-overflow-tooltip prop="remark" label="备注" />
</el-table>
<pagination
v-show="dimissionAttendDatatotal>0"
:total="dimissionAttendDatatotal"
:page.sync="pagination.num"
:limit.sync="pagination.size"
- @pagination="initdimissionAttendData"
+ @pagination="initdimissionAttendData()"
/>
</div>
</div>
@@ -860,27 +959,36 @@
ref="dimissionLogTable"
:data="dimissionLogData"
stripe
- :header-cell-style="{'height':'5.3vh','background-color':'#e6e6e6'}"
+ border
+ :header-cell-style="{'height':'5.3vh','background-color':'#e6e6e6','text-align':'center'}"
+ :cell-style="{padding:'7px 0','text-align':'center'}"
style="width: 100%;"
>
- <el-table-column show-overflow-tooltip="true" type="index" label="序号" align="center" width="55">
+ <el-table-column show-overflow-tooltip type="index" label="序号" align="center" width="55">
<template slot-scope="scope">
<span v-text="getIndex(scope.$index)" />
- </template>EmpLeaveInfo
+ </template>
+ EmpLeaveInfo
</el-table-column>
- <el-table-column show-overflow-tooltip="true" prop="entryDate" label="入职日期" />
- <el-table-column show-overflow-tooltip="true" prop="dimissionDate" label="离职日期" />
- <el-table-column show-overflow-tooltip="true" prop="dimissionType" label="离职类型" :formatter="dimissionTypeFormat" />
- <el-table-column show-overflow-tooltip="true" prop="selfLeaveDay" label="自离天数" />
- <el-table-column show-overflow-tooltip="true" prop="reporter" label="报备人" />
- <el-table-column show-overflow-tooltip="true" prop="remark" label="备注" />
+ <el-table-column show-overflow-tooltip prop="deptName" label="部门/护卫点" />
+ <el-table-column show-overflow-tooltip prop="entryDate" label="入职日期" />
+ <el-table-column show-overflow-tooltip prop="dimissionDate" label="离职日期" />
+ <el-table-column
+ show-overflow-tooltip
+ prop="dimissionType"
+ label="离职类型"
+ :formatter="dimissionTypeFormat"
+ />
+ <el-table-column show-overflow-tooltip prop="selfLeaveDay" label="自离天数" />
+ <el-table-column show-overflow-tooltip prop="reporter" label="报备人" />
+ <el-table-column show-overflow-tooltip prop="remark" label="备注" />
</el-table>
<pagination
v-show="dimissionLogDatatotal>0"
:total="dimissionLogDatatotal"
:page.sync="pagination.num"
:limit.sync="pagination.size"
- @pagination="initdimissionLogData"
+ @pagination="initdimissionLogData()"
/>
</div>
</div>
@@ -897,34 +1005,36 @@
ref="unemploymentTable"
:data="unemploymentData"
stripe
- :header-cell-style="{'height':'5.3vh','background-color':'#e6e6e6'}"
+ border
+ :header-cell-style="{'height':'5.3vh','background-color':'#e6e6e6','text-align':'center'}"
+ :cell-style="{padding:'7px 0','text-align':'center'}"
style="width: 100%;"
@selection-change="onunemploymentDataselection"
>
- <el-table-column show-overflow-tooltip="true" type="index" label="序号" align="center" width="55">
+ <el-table-column show-overflow-tooltip type="index" label="序号" align="center" width="55">
<template slot-scope="scope">
<span v-text="getIndex(scope.$index)" />
</template>
</el-table-column>
- <el-table-column show-overflow-tooltip="true" fixed="right" label="操作" width="120">
+ <el-table-column show-overflow-tooltip fixed="right" label="操作" width="120">
<template slot-scope="scope">
- <span class="table-button" @click="editUnemployment(scope.row)">编辑</span>
+ <span class="table-button" @click="editUnemployment(scope.row,7)">编辑</span>
<span class="table-button" @click="singleDelete(scope.row, 'unemploymentDataselection')">删除</span>
</template>
</el-table-column>
- <el-table-column v-if="fsnumShow" show-overflow-tooltip="true" prop="unemploymentId" label="" />
- <el-table-column show-overflow-tooltip="true" prop="applayDate" label="失业金申请日期" width="180" />
- <el-table-column show-overflow-tooltip="true" prop="applayReason" label="申报事由" />
- <el-table-column show-overflow-tooltip="true" prop="reporter" label="汇报人" width="180" />
- <el-table-column show-overflow-tooltip="true" prop="auditor" label="审核人" width="180" />
- <el-table-column show-overflow-tooltip="true" prop="remark" label="备注" />
+ <el-table-column v-if="fsnumShow" show-overflow-tooltip prop="unemploymentId" label="" />
+ <el-table-column show-overflow-tooltip prop="applayDate" label="失业金申请日期" width="180" />
+ <el-table-column show-overflow-tooltip prop="applayReason" label="申报事由" />
+ <el-table-column show-overflow-tooltip prop="reporter" label="汇报人" width="180" />
+ <el-table-column show-overflow-tooltip prop="auditor" label="审核人" width="180" />
+ <el-table-column show-overflow-tooltip prop="remark" label="备注" />
</el-table>
<pagination
v-show="unemploymentDatatotal>0"
:total="unemploymentDatatotal"
:page.sync="pagination.num"
:limit.sync="pagination.size"
- @pagination="initunemploymentData"
+ @pagination="initunemploymentData()"
/>
</div>
</div>
@@ -941,36 +1051,53 @@
ref="insuranceTable"
:data="insuranceData"
stripe
- :header-cell-style="{'height':'5.3vh','background-color':'#e6e6e6'}"
+ border
+ :header-cell-style="{'height':'5.3vh','background-color':'#e6e6e6','text-align':'center'}"
+ :cell-style="{padding:'7px 0','text-align':'center'}"
style="width: 100%;"
@selection-change="oninsuranceDataselection"
>
- <el-table-column show-overflow-tooltip="true" type="index" label="序号" align="center" width="55">
+ <el-table-column show-overflow-tooltip type="index" label="序号" align="center" width="55">
<template slot-scope="scope">
<span v-text="getIndex(scope.$index)" />
</template>
</el-table-column>
- <el-table-column show-overflow-tooltip="true" fixed="right" label="操作" width="120">
+ <el-table-column show-overflow-tooltip fixed="right" label="操作" width="120">
<template slot-scope="scope">
- <span class="table-button" @click="editInsurance(scope.row)">编辑</span>
- <span class="table-button" @click="singleDelete(scope.row, 'oninsuranceDataselection')">删除</span>
+ <span class="table-button" @click="editInsurance(scope.row,8)">编辑</span>
+ <span class="table-button" @click="singleDelete(scope.row, 'insuranceDataselection')">删除</span>
</template>
</el-table-column>
- <el-table-column v-if="fsnumShow" show-overflow-tooltip="true" prop="insuranceId" label="" />
- <el-table-column show-overflow-tooltip="true" prop="applayDate" label="社保申请日期" width="180" />
- <el-table-column show-overflow-tooltip="true" prop="proposer" label="申请人" width="180" />
- <el-table-column show-overflow-tooltip="true" prop="insuranceGaers" label="社保档位" :formatter="insuranceGaersFormat" />
- <el-table-column show-overflow-tooltip="true" prop="reportStatus" label="是否已报告" :formatter="reportStatusFormat" />
- <el-table-column show-overflow-tooltip="true" prop="applayStatus" label="状态" :formatter="applayStatusFormat" />
- <el-table-column show-overflow-tooltip="true" prop="auditor" label="审核人" width="180" />
- <el-table-column show-overflow-tooltip="true" prop="remark" label="备注" />
+ <el-table-column v-if="fsnumShow" show-overflow-tooltip prop="insuranceId" label="" />
+ <el-table-column show-overflow-tooltip prop="applayDate" label="社保申请日期" width="180" />
+ <el-table-column show-overflow-tooltip prop="proposer" label="申请人" width="180" />
+ <el-table-column
+ show-overflow-tooltip
+ prop="insuranceGaers"
+ label="社保档位"
+ :formatter="insuranceGaersFormat"
+ />
+ <el-table-column
+ show-overflow-tooltip
+ prop="reportStatus"
+ label="是否已报告"
+ :formatter="reportStatusFormat"
+ />
+ <el-table-column
+ show-overflow-tooltip
+ prop="applayStatus"
+ label="状态"
+ :formatter="applayStatusFormat"
+ />
+ <el-table-column show-overflow-tooltip prop="auditor" label="审核人" width="180" />
+ <el-table-column show-overflow-tooltip prop="remark" label="备注" />
</el-table>
<pagination
v-show="insuranceDatatotal>0"
:total="insuranceDatatotal"
:page.sync="pagination.num"
:limit.sync="pagination.size"
- @pagination="initinsuranceData"
+ @pagination="initinsuranceData()"
/>
</div>
</div>
@@ -987,43 +1114,61 @@
ref="accidentCasesTable"
:data="accidentCasesData"
stripe
- :header-cell-style="{'height':'5.3vh','background-color':'#e6e6e6'}"
+ border
+ :header-cell-style="{'height':'5.3vh','background-color':'#e6e6e6','text-align':'center'}"
+ :cell-style="{padding:'7px 0','text-align':'center'}"
style="width: 100%;"
@selection-change="onaccidentCasesDataselection"
>
- <el-table-column show-overflow-tooltip="true" type="index" label="序号" align="center" width="55">
+ <el-table-column show-overflow-tooltip type="index" label="序号" align="center" width="55">
<template slot-scope="scope">
<span v-text="getIndex(scope.$index)" />
</template>
</el-table-column>
- <el-table-column show-overflow-tooltip="true" fixed="right" label="操作" width="120">
+ <el-table-column show-overflow-tooltip fixed="right" label="操作" width="120">
<template slot-scope="scope">
- <span class="table-button" @click="editAccidentCases(scope.row)">编辑</span>
- <span class="table-button" @click="singleDelete(scope.row, 'accidentCasesDataselection')">删除</span>
+ <span class="table-button" @click="editAccidentCases(scope.row,9)">编辑</span>
+ <span
+ class="table-button"
+ @click="singleDelete(scope.row, 'accidentCasesDataselection')"
+ >删除</span>
</template>
</el-table-column>
- <el-table-column v-if="fsnumShow" show-overflow-tooltip="true" prop="accidentId" label="" />
- <el-table-column show-overflow-tooltip="true" prop="injuredTime" label="受伤日期" />
- <el-table-column show-overflow-tooltip="true" prop="injuredAddress" label="受伤地点" width="100" />
- <el-table-column show-overflow-tooltip="true" prop="injuredPart" label="受伤部位" width="100" />
- <el-table-column show-overflow-tooltip="true" prop="injuredDescribe" label="受伤经过描述" />
- <el-table-column show-overflow-tooltip="true" prop="injuredDiacrisis" label="意外险诊断" width="100" />
- <el-table-column show-overflow-tooltip="true" prop="hospitalName" label="就诊医院" width="100" />
- <el-table-column show-overflow-tooltip="true" prop="treatmentName" label="就诊科室" width="100" />
- <el-table-column show-overflow-tooltip="true" prop="hospitalizatioFlag" label="是否住院" width="60" :formatter="hospitalizatioFlagFormat" />
- <el-table-column show-overflow-tooltip="true" prop="bedNumb" label="床号" width="60" />
- <el-table-column show-overflow-tooltip="true" prop="reprotTime" label="报案时间" width="100" />
- <el-table-column show-overflow-tooltip="true" prop="submitTime" label="递交资料时间" width="100" />
- <el-table-column show-overflow-tooltip="true" prop="sbumitBy" label="递交人" width="100" />
- <el-table-column show-overflow-tooltip="true" prop="expensesFee" label="医疗总费用" width="100" />
- <el-table-column show-overflow-tooltip="true" prop="innsureFee" label="保险赔付费用" width="100" />
+ <el-table-column v-if="fsnumShow" show-overflow-tooltip prop="accidentId" label="" />
+ <el-table-column show-overflow-tooltip prop="injuredTime" label="受伤日期" width="100" />
+ <el-table-column show-overflow-tooltip prop="injuredAddress" label="受伤地点" width="100" />
+ <el-table-column show-overflow-tooltip prop="injuredPart" label="受伤部位" width="80" />
+ <el-table-column show-overflow-tooltip prop="injuredDescribe" label="受伤经过描述" width="120" />
+ <el-table-column show-overflow-tooltip prop="injuredDiacrisis" label="意外险诊断" width="100" />
+ <el-table-column show-overflow-tooltip prop="hospitalName" label="就诊医院" width="100" />
+ <el-table-column show-overflow-tooltip prop="treatmentName" label="就诊科室" width="100" />
+ <el-table-column
+ show-overflow-tooltip
+ prop="hospitalizatioFlag"
+ label="是否住院"
+ width="80"
+ :formatter="hospitalizatioFlagFormat"
+ />
+ <el-table-column show-overflow-tooltip prop="bedNumb" label="床号" width="60" />
+ <el-table-column show-overflow-tooltip prop="reprotTime" label="报案时间" width="100" />
+ <el-table-column show-overflow-tooltip prop="submitTime" label="递交资料时间" width="120" />
+ <el-table-column show-overflow-tooltip prop="sbumitBy" label="递交人" width="100" />
+ <el-table-column show-overflow-tooltip prop="expensesFee" label="医疗总费用" width="100" />
+ <el-table-column show-overflow-tooltip prop="innsureFee" label="保险赔付费用" width="120" />
+ <el-table-column
+ show-overflow-tooltip
+ prop="settleStatus"
+ label="是否结案"
+ width="120"
+ :formatter="settleStatusFormat"
+ />
</el-table>
<pagination
v-show="accidentCasesDatatotal>0"
:total="accidentCasesDatatotal"
:page.sync="pagination.num"
:limit.sync="pagination.size"
- @pagination="initaccidentCasesData"
+ @pagination="initaccidentCasesData()"
/>
</div>
</div>
@@ -1040,49 +1185,64 @@
ref="occupationalTable"
:data="occupationalData"
stripe
- :header-cell-style="{'height':'5.3vh','background-color':'#e6e6e6'}"
+ border
+ :header-cell-style="{'height':'5.3vh','background-color':'#e6e6e6','text-align':'center'}"
+ :cell-style="{padding:'7px 0','text-align':'center'}"
style="width: 100%;"
@selection-change="onoccupationalDataselection"
>
- <el-table-column show-overflow-tooltip="true" type="index" label="序号" align="center" width="55">
+ <el-table-column show-overflow-tooltip type="index" label="序号" align="center" width="55">
<template slot-scope="scope">
<span v-text="getIndex(scope.$index)" />
</template>
</el-table-column>
- <el-table-column show-overflow-tooltip="true" fixed="right" label="操作" width="120">
+ <el-table-column show-overflow-tooltip fixed="right" label="操作" width="120">
<template slot-scope="scope">
- <span class="table-button" @click="editOccupational(scope.row)">编辑</span>
+ <span class="table-button" @click="editOccupational(scope.row,10)">编辑</span>
<span class="table-button" @click="singleDelete(scope.row, 'occupationalDataselection')">删除</span>
</template>
</el-table-column>
- <el-table-column v-if="fsnumShow" show-overflow-tooltip="true" prop="occupationalId" label="" />
- <el-table-column show-overflow-tooltip="true" prop="injuredTime" label="受伤日期" />
- <el-table-column show-overflow-tooltip="true" prop="injuredAddress" label="受伤地点" />
- <el-table-column show-overflow-tooltip="true" prop="injuredPart" label="受伤部位" width="80" />
- <el-table-column show-overflow-tooltip="true" prop="injuredDescribe" label="受伤经过描述" />
- <el-table-column show-overflow-tooltip="true" prop="injuredDiacrisis" label="工伤诊断" width="80" />
- <el-table-column show-overflow-tooltip="true" prop="hospitalName" label="就诊医院" />
- <el-table-column show-overflow-tooltip="true" prop="treatmentName" label="就诊科室" />
- <el-table-column show-overflow-tooltip="true" prop="hospitalizatioFlag" label="是否住院" width="80" :formatter="hospitalizatioFlagFormat" />
- <el-table-column show-overflow-tooltip="true" prop="bedNumb" label="床号" width="60" />
- <el-table-column show-overflow-tooltip="true" prop="reportTime" label="报案时间" width="100" />
- <el-table-column show-overflow-tooltip="true" prop="submitTime" label="递交资料时间" width="100" />
- <el-table-column show-overflow-tooltip="true" prop="sbumitBy" label="递交人" width="80" />
- <el-table-column show-overflow-tooltip="true" prop="expensesFee" label="医疗总费用" width="80" />
- <el-table-column show-overflow-tooltip="true" prop="compensated" label="已赔付医药费用" width="100" />
+ <el-table-column v-if="fsnumShow" show-overflow-tooltip prop="occupationalId" label="" />
+ <el-table-column show-overflow-tooltip prop="injuredTime" label="受伤日期" width="120" />
+ <el-table-column show-overflow-tooltip prop="injuredAddress" label="受伤地点" width="100" />
+ <el-table-column show-overflow-tooltip prop="injuredPart" label="受伤部位" width="100" />
+ <el-table-column show-overflow-tooltip prop="injuredDescribe" label="受伤经过描述" width="140" />
+ <el-table-column show-overflow-tooltip prop="injuredDiacrisis" label="工伤诊断" width="80" />
+ <el-table-column show-overflow-tooltip prop="hospitalName" label="就诊医院" width="120" />
+ <el-table-column show-overflow-tooltip prop="treatmentName" label="就诊科室" width="100" />
+ <el-table-column
+ show-overflow-tooltip
+ prop="hospitalizatioFlag"
+ label="是否住院"
+ width="80"
+ :formatter="hospitalizatioFlagFormat"
+ />
+ <el-table-column show-overflow-tooltip prop="bedNumb" label="床号" width="80" />
+ <el-table-column show-overflow-tooltip prop="reportTime" label="报案时间" width="100" />
+ <el-table-column show-overflow-tooltip prop="submitTime" label="递交资料时间" width="120" />
+ <el-table-column show-overflow-tooltip prop="sbumitBy" label="递交人" width="80" />
+ <el-table-column show-overflow-tooltip prop="expensesFee" label="医疗总费用" width="100" />
+ <el-table-column show-overflow-tooltip prop="compensated" label="已赔付医药费用" width="120" />
+ <el-table-column
+ show-overflow-tooltip
+ prop="settleStatus"
+ label="是否结案"
+ width="120"
+ :formatter="settleStatusFormat"
+ />
</el-table>
<pagination
v-show="occupationalDatatotal>0"
:total="occupationalDatatotal"
:page.sync="pagination.num"
:limit.sync="pagination.size"
- @pagination="initoccupationalData"
+ @pagination="initoccupationalData()"
/>
</div>
</div>
<div ref="lzaj" class="lzaj">
<div class="jbxxTitle">
- 劳资案件
+ 仲裁案件
<el-button class="filter-item" type="primary" @click.native="gzadd(11)">
{{ $t('table.add') }}
</el-button>
@@ -1093,37 +1253,50 @@
ref="laborTroubleTable"
:data="laborTroubleData"
stripe
- :header-cell-style="{'height':'5.3vh','background-color':'#e6e6e6'}"
+ border
+ :header-cell-style="{'height':'5.3vh','background-color':'#e6e6e6','text-align':'center'}"
+ :cell-style="{padding:'7px 0','text-align':'center'}"
style="width: 100%;"
@selection-change="onlaborTroubleDataselection"
>
- <el-table-column show-overflow-tooltip="true" type="index" label="序号" align="center" width="55">
+ <el-table-column show-overflow-tooltip type="index" label="序号" align="center" width="55">
<template slot-scope="scope">
<span v-text="getIndex(scope.$index)" />
</template>
</el-table-column>
- <el-table-column show-overflow-tooltip="true" fixed="right" label="操作" width="120">
+ <el-table-column show-overflow-tooltip fixed="right" label="操作" width="120">
<template slot-scope="scope">
- <span class="table-button" @click="editLaborTrouble(scope.row)">编辑</span>
+ <span class="table-button" @click="editLaborTrouble(scope.row,11)">编辑</span>
<span class="table-button" @click="singleDelete(scope.row, 'laborTroubleDataselection')">删除</span>
</template>
</el-table-column>
- <el-table-column v-if="fsnumShow" show-overflow-tooltip="true" prop="arbitrationId" label="" />
- <el-table-column show-overflow-tooltip="true" prop="arbitrationDate" label="仲裁日期" width="100" />
- <el-table-column show-overflow-tooltip="true" prop="arbitrationType" label="仲裁类型" :formatter="arbitrationTypeFormat" />
- <el-table-column show-overflow-tooltip="true" prop="arbitrationReason" label="仲裁事由" />
- <el-table-column show-overflow-tooltip="true" prop="reporter" label="报备人" width="100" />
- <el-table-column show-overflow-tooltip="true" prop="remark" label="备注" />
- <el-table-column show-overflow-tooltip="true" prop="arbitrationPay" label="仲裁赔付(元)" width="180" />
- <el-table-column show-overflow-tooltip="true" prop="arbitrationStatus" label="状态" width="100" :formatter="arbitrationStatusFormat" />
- <el-table-column show-overflow-tooltip="true" prop="settleDate" label="案结日期" width="100" />
+ <el-table-column v-if="fsnumShow" show-overflow-tooltip prop="arbitrationId" label="" />
+ <el-table-column show-overflow-tooltip prop="arbitrationDate" label="仲裁日期" width="100" />
+ <el-table-column
+ show-overflow-tooltip
+ prop="arbitrationType"
+ label="仲裁类型"
+ :formatter="arbitrationTypeFormat"
+ />
+ <el-table-column show-overflow-tooltip prop="arbitrationReason" label="仲裁事由" />
+ <el-table-column show-overflow-tooltip prop="reporter" label="报备人" width="100" />
+ <el-table-column show-overflow-tooltip prop="remark" label="备注" />
+ <el-table-column show-overflow-tooltip prop="arbitrationPay" label="仲裁赔付(元)" width="180" />
+ <el-table-column
+ show-overflow-tooltip
+ prop="arbitrationStatus"
+ label="是否结案"
+ width="100"
+ :formatter="arbitrationStatusFormat"
+ />
+ <el-table-column show-overflow-tooltip prop="settleDate" label="案结日期" width="100" />
</el-table>
<pagination
v-show="laborTroubleDatatotal>0"
:total="laborTroubleDatatotal"
:page.sync="pagination.num"
:limit.sync="pagination.size"
- @pagination="initlaborTroubleData"
+ @pagination="initlaborTroubleData()"
/>
</div>
</div>
@@ -1140,33 +1313,35 @@
ref="badRecordTable"
:data="badRecordData"
stripe
- :header-cell-style="{'height':'5.3vh','background-color':'#e6e6e6'}"
+ border
+ :header-cell-style="{'height':'5.3vh','background-color':'#e6e6e6','text-align':'center'}"
+ :cell-style="{padding:'7px 0','text-align':'center'}"
style="width: 100%;"
@selection-change="onbadRecordDataselection"
>
- <el-table-column show-overflow-tooltip="true" type="index" label="序号" align="center" width="55">
+ <el-table-column show-overflow-tooltip type="index" label="序号" align="center" width="55">
<template slot-scope="scope">
<span v-text="getIndex(scope.$index)" />
</template>
</el-table-column>
- <el-table-column show-overflow-tooltip="true" fixed="right" label="操作" width="120">
+ <el-table-column show-overflow-tooltip fixed="right" label="操作" width="120">
<template slot-scope="scope">
- <span class="table-button" @click="editBadRecord(scope.row)">编辑</span>
- <span class="table-button" @click="singleDelete(scope.row, 'onbadRecordDataselection')">删除</span>
+ <span class="table-button" @click="editBadRecord(scope.row,12)">编辑</span>
+ <span class="table-button" @click="singleDelete(scope.row, 'badRecordDataselection')">删除</span>
</template>
</el-table-column>
- <el-table-column v-if="fsnumShow" show-overflow-tooltip="true" prop="badId" label="" />
- <el-table-column show-overflow-tooltip="true" prop="badDate" label="不良记录日期" width="180" />
- <el-table-column show-overflow-tooltip="true" prop="badContent" label="不良记录描述" />
- <el-table-column show-overflow-tooltip="true" prop="reporter" label="汇报人" width="180" />
- <el-table-column show-overflow-tooltip="true" prop="remark" label="备注" />
+ <el-table-column v-if="fsnumShow" show-overflow-tooltip prop="badId" label="" />
+ <el-table-column show-overflow-tooltip prop="badDate" label="不良记录日期" width="180" />
+ <el-table-column show-overflow-tooltip prop="badContent" label="不良记录描述" />
+ <el-table-column show-overflow-tooltip prop="reporter" label="汇报人" width="180" />
+ <el-table-column show-overflow-tooltip prop="remark" label="备注" />
</el-table>
<pagination
v-show="badRecordDatatotal>0"
:total="badRecordDatatotal"
:page.sync="pagination.num"
:limit.sync="pagination.size"
- @pagination="initbadRecordData"
+ @pagination="initbadRecordData()"
/>
</div>
</div>
@@ -1183,16 +1358,18 @@
ref="remarkInfoTable"
:data="remarkInfoData"
stripe
- :header-cell-style="{'height':'5.3vh','background-color':'#e6e6e6'}"
+ border
+ :header-cell-style="{'height':'5.3vh','background-color':'#e6e6e6','text-align':'center'}"
+ :cell-style="{padding:'7px 0','text-align':'center'}"
style="width: 100%;"
@selection-change="onremarkInfoDataselection"
>
- <el-table-column show-overflow-tooltip="true" type="index" label="序号" align="center" width="55">
+ <el-table-column show-overflow-tooltip type="index" label="序号" align="center" width="55">
<template slot-scope="scope">
<span v-text="getIndex(scope.$index)" />
</template>
</el-table-column>
- <el-table-column show-overflow-tooltip="true" fixed="right" label="操作" width="120">
+ <el-table-column show-overflow-tooltip fixed="right" label="操作" width="120">
<template slot-scope="scope">
<!-- <el-button type="text" size="small" @click="editRemarkInfo(scope.row)">编辑</el-button>-->
<!-- <el-button-->
@@ -1201,48 +1378,44 @@
<!-- @click="singleDelete(scope.row, 'onremarkInfoDataselection')"-->
<!-- >删除-->
<!-- </el-button>-->
- <span class="table-button" @click="editRemarkInfo(scope.row)">编辑</span>
- <span class="table-button" @click="singleDelete(scope.row, 'onremarkInfoDataselection')">删除</span>
+ <span class="table-button" @click="editRemarkInfo(scope.row,13)">编辑</span>
+ <span class="table-button" @click="singleDelete(scope.row, 'remarkInfoDataselection')">删除</span>
</template>
</el-table-column>
- <el-table-column v-if="fsnumShow" show-overflow-tooltip="true" prop="remarkId" label="" />
- <el-table-column show-overflow-tooltip="true" prop="remarkDate" label="备注日期" width="180" />
- <el-table-column show-overflow-tooltip="true" prop="remarkContent" label="备注信息" />
+ <el-table-column v-if="fsnumShow" show-overflow-tooltip prop="remarkId" label="" />
+ <el-table-column show-overflow-tooltip prop="remarkDate" label="备注日期" width="180" />
+ <el-table-column show-overflow-tooltip prop="remarkContent" label="备注信息" />
</el-table>
<pagination
v-show="remarkInfoDatatotal>0"
:total="remarkInfoDatatotal"
:page.sync="pagination.num"
:limit.sync="pagination.size"
- @pagination="initremarkInfoData"
+ @pagination="initremarkInfoData()"
/>
</div>
</div>
<div ref="jljt" class="jljt">
- <div class="jbxxTitle">
- 上传附件
+ <div class="jbxxTitle2">
+ <el-col :span="18">
+ 上传附件
+ </el-col>
+ <el-col :span="6" class="search">
+ <el-input
+ v-model="fileName"
+ maxlength="20"
+ minlength="1"
+ clearable
+ placeholder="请输入文件名"
+ show-word-limit
+ style="width:290px;margin-right: 10px;"
+ />
+ <el-button type="primary" @click="findFileByFileName()">查询</el-button>
+ </el-col>
</div>
<div class="jbxxCon">
<div class="zs-main">
- <el-row class="search-title">
- <el-col :span="18" class="title">
- <!-- <div class="zs-title">上传附件</div>-->
- <p />
- </el-col>
- <el-col :span="6" class="search">
- <el-input
- v-model="fileName"
- maxlength="20"
- minlength="1"
- clearable
- placeholder="请输入文件名"
- show-word-limit
- style="width:200px"
- />
- <el-button type="primary" @click="findFileByFileName()">查询</el-button>
- </el-col>
- </el-row>
<el-container style="background-color: #fff;">
<el-aside width="210px" style="background-color: #fff;text-align: center;padding-top: 0">
<h4 style="margin-top: 0">{{ empBaseInfoForm.empName }}:{{ empBaseInfoForm.deptName }}</h4>
@@ -1293,6 +1466,7 @@
>下载
</el-button>
<el-button
+ class="pri-del-btn"
type="primary"
icon="el-icon-search"
size="mini"
@@ -1300,7 +1474,7 @@
>删除
</el-button>
<el-popconfirm title="是否移动附件?" @onConfirm="mvdialogFormVisible = true">
- <el-button slot="reference" class="hr-but" type="danger">转存</el-button>
+ <el-button slot="reference" type="danger">转存</el-button>
</el-popconfirm>
</el-col>
</el-row>
@@ -1340,21 +1514,53 @@
<el-main style="background-color: #fff;margin-top: 5%;">
<el-row v-for="(data, index) in filesUploadData" :key="index">
<template v-for="(node, nodeIndex) in data.node">
- <el-col v-if="node.isUpload === false" :key="node.filesid" :span="3">
+ <el-col v-if="node.isUpload === false" :key="node.accessoryid" :span="3">
<el-card
shadow="never"
@click.native="clickCard(index * 8 + nodeIndex)"
>
- <img
+ <el-image
+ v-if="'tif,bmp,jpg,png,gif'.indexOf(node.filesformat) == -1"
:src="showFileImg(node.filesformat)"
class="uploading-image"
+ :preview-src-list="srcList"
+ @click="clickImg(node)"
+ />
+ <el-tooltip
+ v-if="'tif,bmp,jpg,png,gif'.indexOf(node.filesformat) == -1"
+ class="item"
+ effect="dark"
+ :content="node.filesname"
+ placement="bottom"
>
- <el-tooltip class="item" effect="dark" :content="node.filesname" placement="bottom">
- <div style="padding-top: 14px;">
+ <div style="padding-top: 14px;text-align: center">
<el-checkbox
v-model="checkedArr[index * 8 + nodeIndex].isChecked"
class="myRedCheckBox"
>{{ node.filesname }}
+ </el-checkbox>
+ </div>
+ </el-tooltip>
+ <el-tooltip
+ v-if="'tif,bmp,jpg,png,gif'.indexOf(node.filesformat) != -1"
+ class="item"
+ effect="dark"
+ :content="node.filesname"
+ placement="bottom"
+ >
+ <div style="padding-top: 14px;">
+ <el-image
+ style="width: 100px; height: 80px;margin-top: -10px;"
+ :src="getImg+node.accessoryid"
+ :preview-src-list="srcList"
+ @click="clickImg(node)"
+ />
+ <el-checkbox
+ v-model="checkedArr[index * 8 + nodeIndex].isChecked"
+ class="myRedCheckBox"
+ >
+
+ {{ node.filesname }}
</el-checkbox>
</div>
</el-tooltip>
@@ -1423,8 +1629,8 @@
<el-form-item label="员工编号" prop="empNumb">
<el-input v-model="workExperienceForm.empNumb" />
</el-form-item>
- <el-form-item label="部门(护卫点)" prop="deptName">
- <el-input v-model="workExperienceForm.deptName" />
+ <el-form-item label="部门(护卫点)" prop="allDeptName">
+ <el-input v-model="workExperienceForm.allDeptName" />
</el-form-item>
<el-form-item label="岗位" prop="jobName">
<el-input v-model="workExperienceForm.jobName" />
@@ -1470,7 +1676,7 @@
</el-form>
<div slot="footer" class="dialog-footer">
<el-button type="primary" @click="putWorkExperience('workExperienceForm')">保 存</el-button>
- <el-button @click="dialogIsShow()">取 消</el-button>
+
</div>
</el-dialog>
<el-dialog title="体检信息" append-to-body :visible.sync="dialogshowArr[2].show" width="50%">
@@ -1525,8 +1731,8 @@
<el-form-item label="员工编号" prop="empNumb">
<el-input v-model="physicalExamForm.empNumb" />
</el-form-item>
- <el-form-item label="部门(护卫点)" prop="deptName">
- <el-input v-model="physicalExamForm.deptName" />
+ <el-form-item label="部门(护卫点)" prop="allDeptName">
+ <el-input v-model="physicalExamForm.allDeptName" />
</el-form-item>
<el-form-item label="岗位" prop="jobName">
<el-input v-model="physicalExamForm.jobName" />
@@ -1574,7 +1780,7 @@
</el-form>
<div slot="footer" class="dialog-footer">
<el-button type="primary" @click="putPhysicalExam('physicalExamForm')">保 存</el-button>
- <el-button @click="dialogIsShow()">取 消</el-button>
+
</div>
</el-dialog>
<el-dialog title="合同信息" append-to-body :visible.sync="dialogshowArr[3].show" width="50%">
@@ -1634,8 +1840,8 @@
<el-form-item label="员工编号" prop="empNumb">
<el-input v-model="contractInfoForm.empNumb" />
</el-form-item>
- <el-form-item label="部门(护卫点)" prop="deptName">
- <el-input v-model="contractInfoForm.deptName" />
+ <el-form-item label="部门(护卫点)" prop="allDeptName">
+ <el-input v-model="contractInfoForm.allDeptName" />
</el-form-item>
<el-form-item label="岗位" prop="jobName">
<el-input v-model="contractInfoForm.jobName" />
@@ -1663,7 +1869,7 @@
</el-form>
<div slot="footer" class="dialog-footer">
<el-button type="primary" @click="putContractInfo('contractInfoForm')">保 存</el-button>
- <el-button @click="dialogIsShow()">取 消</el-button>
+
</div>
</el-dialog>
<el-dialog title="离职当月考勤" append-to-body :visible.sync="dialogshowArr[4].show" width="50%">
@@ -1716,8 +1922,8 @@
<el-form-item label="员工编号" prop="empNumb">
<el-input v-model="dimissionAttendForm.empNumb" />
</el-form-item>
- <el-form-item label="部门(护卫点)" prop="deptName">
- <el-input v-model="dimissionAttendForm.deptName" />
+ <el-form-item label="部门(护卫点)" prop="allDeptName">
+ <el-input v-model="dimissionAttendForm.allDeptName" />
</el-form-item>
<el-form-item label="岗位" prop="jobName">
<el-input v-model="dimissionAttendForm.jobName" />
@@ -1745,7 +1951,7 @@
</el-form>
<div slot="footer" class="dialog-footer">
<el-button type="primary" @click="putDimissionAttend('dimissionAttendForm')">保 存</el-button>
- <el-button @click="dialogIsShow()">取 消</el-button>
+
</div>
</el-dialog>
<el-dialog title="请假记录" append-to-body :visible.sync="dialogshowArr[5].show" width="50%">
@@ -1805,8 +2011,8 @@
<el-form-item label="员工编号" prop="empNumb">
<el-input v-model="leaveInfoForm.empNumb" />
</el-form-item>
- <el-form-item label="部门(护卫点)" prop="deptName">
- <el-input v-model="leaveInfoForm.deptName" />
+ <el-form-item label="部门(护卫点)" prop="allDeptName">
+ <el-input v-model="leaveInfoForm.allDeptName" />
</el-form-item>
<el-form-item label="岗位" prop="jobName">
<el-input v-model="leaveInfoForm.jobName" />
@@ -1846,7 +2052,7 @@
</el-form>
<div slot="footer" class="dialog-footer">
<el-button type="primary" @click="putLeaveInfo('leaveInfoForm')">保 存</el-button>
- <el-button @click="dialogIsShow()">取 消</el-button>
+
</div>
</el-dialog>
<el-dialog title="辞职申请" append-to-body :visible.sync="dialogshowArr[6].show" width="50%">
@@ -1884,8 +2090,8 @@
<el-form-item label="员工编号" prop="empNumb">
<el-input v-model="resignForm.empNumb" />
</el-form-item>
- <el-form-item label="部门(护卫点)" prop="deptName">
- <el-input v-model="resignForm.deptName" />
+ <el-form-item label="部门(护卫点)" prop="allDeptName">
+ <el-input v-model="resignForm.allDeptName" />
</el-form-item>
<el-form-item label="岗位" prop="jobName">
<el-input v-model="resignForm.jobName" />
@@ -1912,7 +2118,7 @@
</el-form>
<div slot="footer" class="dialog-footer">
<el-button type="primary" @click="putResign('resignForm')">保 存</el-button>
- <el-button @click="dialogIsShow()">取 消</el-button>
+
</div>
</el-dialog>
<el-dialog title="失业金领取" append-to-body :visible.sync="dialogshowArr[7].show" width="50%">
@@ -1959,8 +2165,8 @@
<el-form-item label="员工编号" prop="empNumb">
<el-input v-model="unemploymentForm.empNumb" />
</el-form-item>
- <el-form-item label="部门(护卫点)" prop="deptName">
- <el-input v-model="unemploymentForm.deptName" />
+ <el-form-item label="部门(护卫点)" prop="allDeptName">
+ <el-input v-model="unemploymentForm.allDeptName" />
</el-form-item>
<el-form-item label="岗位" prop="jobName">
<el-input v-model="unemploymentForm.jobName" />
@@ -1984,7 +2190,7 @@
</el-form>
<div slot="footer" class="dialog-footer">
<el-button type="primary" @click="putUnemployment('unemploymentForm')">保 存</el-button>
- <el-button @click="dialogIsShow()">取 消</el-button>
+
</div>
</el-dialog>
<el-dialog title="社保申请" append-to-body :visible.sync="dialogshowArr[8].show" width="50%">
@@ -2048,8 +2254,8 @@
<el-form-item label="员工编号" prop="empNumb">
<el-input v-model="insuranceForm.empNumb" />
</el-form-item>
- <el-form-item label="部门(护卫点)" prop="deptName">
- <el-input v-model="insuranceForm.deptName" />
+ <el-form-item label="部门(护卫点)" prop="allDeptName">
+ <el-input v-model="insuranceForm.allDeptName" />
</el-form-item>
<el-form-item label="岗位" prop="jobName">
<el-input v-model="insuranceForm.jobName" />
@@ -2082,7 +2288,7 @@
</el-form>
<div slot="footer" class="dialog-footer">
<el-button type="primary" @click="putInsurance('insuranceForm')">保 存</el-button>
- <el-button @click="dialogIsShow()">取 消</el-button>
+
</div>
</el-dialog>
<el-dialog title="意外险案件" append-to-body :visible.sync="dialogshowArr[9].show" width="50%">
@@ -2129,8 +2335,8 @@
<el-form-item label="员工编号" prop="empNumb">
<el-input v-model="accidentCasesForm.empNumb" />
</el-form-item>
- <el-form-item label="部门(护卫点)" prop="deptName">
- <el-input v-model="accidentCasesForm.deptName" />
+ <el-form-item label="部门(护卫点)" prop="allDeptName">
+ <el-input v-model="accidentCasesForm.allDeptName" />
</el-form-item>
<el-form-item label="岗位" prop="jobName">
<el-input v-model="accidentCasesForm.jobName" />
@@ -2234,7 +2440,7 @@
</el-form>
<div slot="footer" class="dialog-footer">
<el-button type="primary" @click="putAccidentCases('accidentCasesForm')">保 存</el-button>
- <el-button @click="dialogIsShow()">取 消</el-button>
+
</div>
</el-dialog>
<el-dialog title="工伤案件" append-to-body :visible.sync="dialogshowArr[10].show" width="50%">
@@ -2281,8 +2487,8 @@
<el-form-item label="员工编号" prop="empNumb">
<el-input v-model="occupationalForm.empNumb" />
</el-form-item>
- <el-form-item label="部门(护卫点)" prop="deptName">
- <el-input v-model="occupationalForm.deptName" />
+ <el-form-item label="部门(护卫点)" prop="allDeptName">
+ <el-input v-model="occupationalForm.allDeptName" />
</el-form-item>
<el-form-item label="岗位" prop="jobName">
<el-input v-model="occupationalForm.jobName" />
@@ -2431,10 +2637,10 @@
</el-form>
<div slot="footer" class="dialog-footer">
<el-button type="primary" @click="putOccupational('occupationalForm')">保 存</el-button>
- <el-button @click="dialogIsShow()">取 消</el-button>
+
</div>
</el-dialog>
- <el-dialog title="劳资案件" append-to-body :visible.sync="dialogshowArr[11].show" width="50%">
+ <el-dialog title="仲裁案件" append-to-body :visible.sync="dialogshowArr[11].show" width="50%">
<el-form
ref="laborTroubleForm"
:model="laborTroubleForm"
@@ -2473,7 +2679,7 @@
<el-form-item label="汇报人" prop="reporter">
<el-input v-model="laborTroubleForm.reporter" />
</el-form-item>
- <el-form-item label="状态" prop="arbitrationStatus">
+ <el-form-item label="是否结案" prop="arbitrationStatus">
<el-select v-model="laborTroubleForm.arbitrationStatus" placeholder="">
<el-option
v-for="dict in settleStatusOptions"
@@ -2488,8 +2694,8 @@
<el-form-item label="员工编号" prop="empNumb">
<el-input v-model="laborTroubleForm.empNumb" />
</el-form-item>
- <el-form-item label="部门(护卫点)" prop="deptName">
- <el-input v-model="laborTroubleForm.deptName" />
+ <el-form-item label="部门(护卫点)" prop="allDeptName">
+ <el-input v-model="laborTroubleForm.allDeptName" />
</el-form-item>
<el-form-item label="岗位" prop="jobName">
<el-input v-model="laborTroubleForm.jobName" />
@@ -2538,7 +2744,7 @@
</el-form>
<div slot="footer" class="dialog-footer">
<el-button type="primary" @click="putLaborTrouble('laborTroubleForm')">保 存</el-button>
- <el-button @click="dialogIsShow()">取 消</el-button>
+
</div>
</el-dialog>
<el-dialog title="不良记录" append-to-body :visible.sync="dialogshowArr[12].show" width="50%">
@@ -2582,8 +2788,8 @@
<el-form-item label="员工编号" prop="empNumb">
<el-input v-model="badRecordForm.empNumb" />
</el-form-item>
- <el-form-item label="部门(护卫点)" prop="deptName">
- <el-input v-model="badRecordForm.deptName" />
+ <el-form-item label="部门(护卫点)" prop="allDeptName">
+ <el-input v-model="badRecordForm.allDeptName" />
</el-form-item>
<el-form-item label="岗位" prop="jobName">
<el-input v-model="badRecordForm.jobName" />
@@ -2610,7 +2816,7 @@
</el-form>
<div slot="footer" class="dialog-footer">
<el-button type="primary" @click="putBadRecord('badRecordForm')">保 存</el-button>
- <el-button @click="dialogIsShow()">取 消</el-button>
+
</div>
</el-dialog>
<el-dialog title="备注信息" append-to-body :visible.sync="dialogshowArr[13].show" width="50%">
@@ -2654,8 +2860,8 @@
<el-form-item label="员工编号" prop="empNumb">
<el-input v-model="remarkInfoForm.empNumb" />
</el-form-item>
- <el-form-item label="部门(护卫点)" prop="deptName">
- <el-input v-model="remarkInfoForm.deptName" />
+ <el-form-item label="部门(护卫点)" prop="allDeptName">
+ <el-input v-model="remarkInfoForm.allDeptName" />
</el-form-item>
<el-form-item label="岗位" prop="jobName">
<el-input v-model="remarkInfoForm.jobName" />
@@ -2672,14 +2878,14 @@
</el-form>
<div slot="footer" class="dialog-footer">
<el-button type="primary" @click="putRemarkInfo('remarkInfoForm')">保 存</el-button>
- <el-button @click="dialogIsShow()">取 消</el-button>
+
</div>
</el-dialog>
</el-dialog>
</div>
</template>
<script>
-import { calculateSeniority, toCardGetUserInfo } from '@/utils/myUtil'
+import { calculateSeniority, dateDifference, toCardGetUserInfo } from '@/utils/myUtil'
import Treeselect from '@riophae/vue-treeselect'
import '@riophae/vue-treeselect/dist/vue-treeselect.css'
import Pagination from '@/components/Pagination'
@@ -2737,6 +2943,33 @@
},
readon: false,
workExperienceModal: true,
+ restaurJob: [{ value: '总经理', code: '2942725270000031' },
+ { value: '总秘', code: '2942725270000032' },
+ { value: '总助', code: '2942725270000033' },
+ { value: '经理', code: '2942725270000022' },
+ { value: '副经理', code: '2942725270000015' },
+ { value: '助理', code: '2942725270000030' },
+ { value: '项目经理', code: '2942725270000027' },
+ { value: '大队长', code: '2942725270000006' },
+ { value: '大队长兼内勤', code: '2942725270000007' },
+ { value: '中队长', code: '2942725270000029' },
+ { value: '队长', code: '2942725270000011' },
+ { value: '分队长', code: '2942725270000013' },
+ { value: '副队长', code: '2942725270000014' },
+ { value: '班长', code: '2942725270000002' },
+ { value: '保安员', code: '2942725270000003' },
+ { value: '内勤', code: '2942725270000024' },
+ { value: '保洁', code: '2942725270000004' },
+ { value: '电工', code: '2942725270000010' },
+ { value: '绿化工', code: '2942725270000023' },
+ { value: '出纳', code: '2942725270000005' },
+ { value: '人事专员', code: '2942725270000025' },
+ { value: '司机', code: '2942725270000026' },
+ { value: '购买保险', code: '2942725270000016' },
+ { value: '广州燃气中队长', code: '2942725270000018' },
+ { value: '管理员', code: '2942725270000017' },
+ { value: '监控员', code: '2942725270000021' },
+ { value: '员工', code: '2942725270000028' }],
dialogshowArr: [
{
show: false
@@ -2788,7 +3021,7 @@
message: this.$t('rules.noMoreThan20'),
trigger: 'blur'
}],
- empName: [{ required: true, message: '请输入员工姓名', trigger: 'blur' },
+ empName: [{ required: true, message: '请输入姓名', trigger: 'blur' },
{ min: 2, max: 50, message: this.$t('rules.noMoreThan50'), trigger: 'blur' }],
empNumb: [{ required: true, message: '请输入员工编号', trigger: 'blur' },
{ min: 2, max: 20, message: this.$t('rules.noMoreThan20'), trigger: 'blur' }],
@@ -2803,7 +3036,7 @@
message: '长度不超过36个字符',
trigger: 'blur'
}],
- insuranceType: [{ required: true, message: '请选择保险类型', trigger: 'change' }],
+ insuranceType: [{ required: true, message: '请选择社保档位', trigger: 'change' }],
entryDate: [{ required: true, message: '请选择入职日期', trigger: 'change' }],
seniority: [{ required: true, message: '请输入入司工龄', trigger: 'blur' }],
archivesStatus: [{ required: true, message: '请选择档案情况', trigger: 'change' }],
@@ -2866,11 +3099,11 @@
remark: [{ max: 512, message: '长度不超过512个字符', trigger: 'blur' }]
},
contractInfoRules: {
- signingDate: [{ required: true, message: '请选择合同签订时间', trigger: 'change' }],
+ signingDate: [{ required: true, message: '请选择合同签订时间', trigger: 'change', validator: this.startDate }],
contractStatus: [{ required: true, message: '请选择合同状态', trigger: 'change' }],
transactor: [{ max: 40, message: '长度不超过40个字符', trigger: 'blur' }],
beginDate: [{ required: true, message: '请选择合同开始日期', trigger: 'change' }],
- endDate: [{ required: true, message: '请选择合同结束时间', trigger: 'change' }],
+ endDate: [{ required: true, message: '请选择合同结束时间', trigger: 'change', validator: this.endDate }],
remark: [{ max: 512, message: '长度不超过512个字符', trigger: 'blur' }]
},
dimissionAttendRules: {
@@ -2884,10 +3117,10 @@
pattern: /^\d{1,2}(\.\d{1,1})?$/,
message: '出勤天数精确到1位小数'
}],
- overtimeDay: [{ pattern: /^\d{1,2}(\.\d{1,1})?$/, message: '加班(天)精确到1位小数' }],
- overtimeHour: [{ pattern: /^\d{1,2}(\.\d{1,1})?$/, message: '加班(小时)精确到1位小数' }],
- leaveDay: [{ pattern: /^\d{1,2}(\.\d{1,1})?$/, message: '请假(天)精确到1位小数' }],
- absenteeism: [{ pattern: /^\d{1,2}(\.\d{1,1})?$/, message: '旷工(天)精确到1位小数' }],
+ overtimeDay: [{ pattern: /^\d{1,3}(\.\d{1,1})?$/, message: '加班(天)精确到1位小数' }],
+ overtimeHour: [{ pattern: /^\d{1,3}(\.\d{1,1})?$/, message: '加班(小时)精确到1位小数' }],
+ leaveDay: [{ pattern: /^\d{1,3}(\.\d{1,1})?$/, message: '请假(天)精确到1位小数' }],
+ absenteeism: [{ pattern: /^\d{1,3}(\.\d{1,1})?$/, message: '旷工(天)精确到1位小数' }],
remark: [{ max: 512, message: '长度不超过512个字符', trigger: 'blur' }]
},
leaveInfoRules: {
@@ -3053,33 +3286,6 @@
{ value: '台湾省', code: '710000' },
{ value: '香港特别行政区', code: '810000' },
{ value: '澳门特别行政区', code: '820000' }],
- restaurJob: [{ value: '总经理', code: '2942725270000031' },
- { value: '总秘', code: '2942725270000032' },
- { value: '总助', code: '2942725270000033' },
- { value: '经理', code: '2942725270000022' },
- { value: '副经理', code: '2942725270000015' },
- { value: '助理', code: '2942725270000030' },
- { value: '项目经理', code: '2942725270000027' },
- { value: '大队长', code: '2942725270000006' },
- { value: '大队长兼内勤', code: '2942725270000007' },
- { value: '中队长', code: '2942725270000029' },
- { value: '队长', code: '2942725270000011' },
- { value: '分队长', code: '2942725270000013' },
- { value: '副队长', code: '2942725270000014' },
- { value: '班长', code: '2942725270000002' },
- { value: '保安员', code: '2942725270000003' },
- { value: '内勤', code: '2942725270000024' },
- { value: '保洁', code: '2942725270000004' },
- { value: '电工', code: '2942725270000010' },
- { value: '绿化工', code: '2942725270000023' },
- { value: '出纳', code: '2942725270000005' },
- { value: '人事专员', code: '2942725270000025' },
- { value: '司机', code: '2942725270000026' },
- { value: '购买保险', code: '2942725270000016' },
- { value: '广州燃气中队长', code: '2942725270000018' },
- { value: '管理员', code: '2942725270000017' },
- { value: '监控员', code: '2942725270000021' },
- { value: '员工', code: '2942725270000028' }],
types: '',
physicalExamData: [],
physicalExamDataselection: [],
@@ -3148,7 +3354,6 @@
creator: '',
modifyTime: '',
modifier: '',
-
empStatus: 0,
version: ''
},
@@ -3285,7 +3490,6 @@
creator: '',
modifyTime: '',
modifier: '',
-
version: '',
empStatus: 0,
remark: ''
@@ -3580,7 +3784,9 @@
arbitrationTypeOptions: [],
changeTypeOptions: [],
dimissionTypeOptions: [],
- sexOptions: []
+ sexOptions: [],
+ srcList: [],
+ getImg: pages.getAccessoryImage
}
},
computed: {
@@ -3645,7 +3851,7 @@
this.getDicts('LEAVETYPE').then(response => {
this.leaveTypeOptions = response.data
})
- this.getDicts('insuranceGaers').then(response => {
+ this.getDicts('INSURANCETYPE').then(response => {
this.insuranceGaersOptions = response.data
})
this.getDicts('applayStatus').then(response => {
@@ -3671,6 +3877,12 @@
})
},
methods: {
+ clickImg(node) {
+ this.srcList = []
+ if ('tif,bmp,jpg,png,gif'.indexOf(node.filesformat) >= 0) {
+ this.srcList.push(this.getImg + node.accessoryid)
+ }
+ },
typeFormat(row, column) {
return this.selectDictLabel(this.physicalExamTypeOptions, row.physicalExamType)
},
@@ -3706,6 +3918,9 @@
},
arbitrationStatusFormat(row, column) {
return this.selectDictLabel(this.settleStatusOptions, row.arbitrationStatus)
+ },
+ settleStatusFormat(row, column) {
+ return this.selectDictLabel(this.settleStatusOptions, row.settleStatus)
},
beforeAvatarUpload(file) {
this.fileDate.labelid = this.activities[this.beforeIndex].id
@@ -3752,6 +3967,10 @@
},
showFileImg(type) {
switch (type) {
+ case 'xls':
+ return require('../../assets/uploading/xls.png')
+ case 'xlsx':
+ return require('../../assets/uploading/xls.png')
case 'txt':
return require('../../assets/uploading/txt.png')
case 'apk':
@@ -4062,23 +4281,176 @@
})
},
setArchives(val) {
+ let certificateList = []
+ if (val.certificateList && typeof val.certificateList === 'string') {
+ certificateList = val.certificateList.split(',')
+ val.certificateList = certificateList
+ }
+ const remarks = ''
+ val.remark = remarks
+ this.readon = false
this.empBaseInfoForm = { ...val }
this.empBaseInfoImageUrl = pages.getEmpBaseInfoImage + this.empBaseInfoForm.empId
this.fileDate.empId = this.empBaseInfoForm.empId
this.labelfrom.empId = this.empBaseInfoForm.empId
- this.remarkInfoForm = { ...val }
- this.laborTroubleForm = { ...val }
- this.occupationalForm = { ...val }
- this.accidentCasesForm = { ...val }
- this.insuranceForm = { ...val }
- this.unemploymentForm = { ...val }
- this.resignForm = { ...val }
- this.leaveInfoForm = { ...val }
- this.contractInfoForm = { ...val }
- this.dimissionAttendForm = { ...val }
- this.physicalExamForm = { ...val }
- this.workExperienceForm = { ...val }
- this.badRecordForm = { ...val }
+
+ this.remarkInfoForm.allDeptName = val.allDeptName
+ this.remarkInfoForm.certificateNumb = val.certificateNumb
+ this.remarkInfoForm.empId = val.empId
+ this.remarkInfoForm.empName = val.empName
+ this.remarkInfoForm.empNumb = val.empNumb
+ this.remarkInfoForm.deptName = val.deptName
+ this.remarkInfoForm.deptId = val.deptId
+ this.remarkInfoForm.jobId = val.jobId
+ this.remarkInfoForm.jobName = val.jobName
+ this.remarkInfoForm.sex = val.sex
+ this.remarkInfoForm.delFlag = 0
+ this.$set(this.remarkInfoForm, 'delFlag', 0)
+
+ this.laborTroubleForm.allDeptName = val.allDeptName
+ this.laborTroubleForm.certificateNumb = val.certificateNumb
+ this.laborTroubleForm.empId = val.empId
+ this.laborTroubleForm.empName = val.empName
+ this.laborTroubleForm.empNumb = val.empNumb
+ this.laborTroubleForm.deptName = val.deptName
+ this.laborTroubleForm.deptId = val.deptId
+ this.laborTroubleForm.jobId = val.jobId
+ this.laborTroubleForm.jobName = val.jobName
+ this.laborTroubleForm.sex = val.sex
+ this.$set(this.laborTroubleForm, 'delFlag', 0)
+
+ this.occupationalForm.allDeptName = val.allDeptName
+ this.occupationalForm.certificateNumb = val.certificateNumb
+ this.occupationalForm.empId = val.empId
+ this.occupationalForm.empName = val.empName
+ this.occupationalForm.empNumb = val.empNumb
+ this.occupationalForm.deptName = val.deptName
+ this.occupationalForm.deptId = val.deptId
+ this.occupationalForm.jobId = val.jobId
+ this.occupationalForm.jobName = val.jobName
+ this.occupationalForm.sex = val.sex
+ this.$set(this.occupationalForm, 'delFlag', 0)
+
+ this.insuranceForm.allDeptName = val.allDeptName
+ this.insuranceForm.certificateNumb = val.certificateNumb
+ this.insuranceForm.empId = val.empId
+ this.insuranceForm.empName = val.empName
+ this.insuranceForm.empNumb = val.empNumb
+ this.insuranceForm.deptName = val.deptName
+ this.insuranceForm.deptId = val.deptId
+ this.insuranceForm.jobId = val.jobId
+ this.insuranceForm.jobName = val.jobName
+ this.insuranceForm.sex = val.sex
+ this.$set(this.insuranceForm, 'delFlag', 0)
+
+ this.unemploymentForm.allDeptName = val.allDeptName
+ this.unemploymentForm.certificateNumb = val.certificateNumb
+ this.unemploymentForm.empId = val.empId
+ this.unemploymentForm.empName = val.empName
+ this.unemploymentForm.empNumb = val.empNumb
+ this.unemploymentForm.deptName = val.deptName
+ this.unemploymentForm.deptId = val.deptId
+ this.unemploymentForm.jobId = val.jobId
+ this.unemploymentForm.jobName = val.jobName
+ this.unemploymentForm.sex = val.sex
+ this.$set(this.unemploymentForm, 'delFlag', 0)
+
+ this.resignForm.allDeptName = val.allDeptName
+ this.resignForm.certificateNumb = val.certificateNumb
+ this.resignForm.empId = val.empId
+ this.resignForm.empName = val.empName
+ this.resignForm.empNumb = val.empNumb
+ this.resignForm.deptName = val.deptName
+ this.resignForm.deptId = val.deptId
+ this.resignForm.jobId = val.jobId
+ this.resignForm.jobName = val.jobName
+ this.resignForm.sex = val.sex
+ this.$set(this.resignForm, 'delFlag', 0)
+
+ this.leaveInfoForm.allDeptName = val.allDeptName
+ this.leaveInfoForm.certificateNumb = val.certificateNumb
+ this.leaveInfoForm.empId = val.empId
+ this.leaveInfoForm.empName = val.empName
+ this.leaveInfoForm.empNumb = val.empNumb
+ this.leaveInfoForm.deptName = val.deptName
+ this.leaveInfoForm.deptId = val.deptId
+ this.leaveInfoForm.jobId = val.jobId
+ this.leaveInfoForm.jobName = val.jobName
+ this.leaveInfoForm.sex = val.sex
+ this.$set(this.leaveInfoForm, 'delFlag', 0)
+
+ this.contractInfoForm.allDeptName = val.allDeptName
+ this.contractInfoForm.certificateNumb = val.certificateNumb
+ this.contractInfoForm.empId = val.empId
+ this.contractInfoForm.empName = val.empName
+ this.contractInfoForm.empNumb = val.empNumb
+ this.contractInfoForm.deptName = val.deptName
+ this.contractInfoForm.deptId = val.deptId
+ this.contractInfoForm.jobId = val.jobId
+ this.contractInfoForm.jobName = val.jobName
+ this.contractInfoForm.sex = val.sex
+ this.$set(this.contractInfoForm, 'delFlag', 0)
+
+ this.dimissionAttendForm.allDeptName = val.allDeptName
+ this.dimissionAttendForm.certificateNumb = val.certificateNumb
+ this.dimissionAttendForm.empId = val.empId
+ this.dimissionAttendForm.empName = val.empName
+ this.dimissionAttendForm.empNumb = val.empNumb
+ this.dimissionAttendForm.deptName = val.deptName
+ this.dimissionAttendForm.deptId = val.deptId
+ this.dimissionAttendForm.jobId = val.jobId
+ this.dimissionAttendForm.jobName = val.jobName
+ this.dimissionAttendForm.sex = val.sex
+ this.$set(this.dimissionAttendForm, 'delFlag', 0)
+
+ this.physicalExamForm.allDeptName = val.allDeptName
+ this.physicalExamForm.certificateNumb = val.certificateNumb
+ this.physicalExamForm.empId = val.empId
+ this.physicalExamForm.empName = val.empName
+ this.physicalExamForm.empNumb = val.empNumb
+ this.physicalExamForm.deptName = val.deptName
+ this.physicalExamForm.deptId = val.deptId
+ this.physicalExamForm.jobId = val.jobId
+ this.physicalExamForm.jobName = val.jobName
+ this.physicalExamForm.sex = val.sex
+ this.$set(this.physicalExamForm, 'delFlag', 0)
+
+ this.workExperienceForm.allDeptName = val.allDeptName
+ this.workExperienceForm.certificateNumb = val.certificateNumb
+ this.workExperienceForm.empId = val.empId
+ this.workExperienceForm.empName = val.empName
+ this.workExperienceForm.empNumb = val.empNumb
+ this.workExperienceForm.deptName = val.deptName
+ this.workExperienceForm.deptId = val.deptId
+ this.workExperienceForm.jobId = val.jobId
+ this.workExperienceForm.jobName = val.jobName
+ this.workExperienceForm.sex = val.sex
+ this.$set(this.workExperienceForm, 'delFlag', 0)
+
+ this.badRecordForm.allDeptName = val.allDeptName
+ this.badRecordForm.certificateNumb = val.certificateNumb
+ this.badRecordForm.empId = val.empId
+ this.badRecordForm.empName = val.empName
+ this.badRecordForm.empNumb = val.empNumb
+ this.badRecordForm.deptName = val.deptName
+ this.badRecordForm.deptId = val.deptId
+ this.badRecordForm.jobId = val.jobId
+ this.badRecordForm.jobName = val.jobName
+ this.badRecordForm.sex = val.sex
+ this.$set(this.badRecordForm, 'delFlag', 0)
+
+ this.accidentCasesForm.allDeptName = val.allDeptName
+ this.accidentCasesForm.certificateNumb = val.certificateNumb
+ this.accidentCasesForm.empId = val.empId
+ this.accidentCasesForm.empName = val.empName
+ this.accidentCasesForm.empNumb = val.empNumb
+ this.accidentCasesForm.deptName = val.deptName
+ this.accidentCasesForm.deptId = val.deptId
+ this.accidentCasesForm.jobId = val.jobId
+ this.accidentCasesForm.jobName = val.jobName
+ this.accidentCasesForm.sex = val.sex
+ this.$set(this.accidentCasesForm, 'delFlag', 0)
+
this.initlabel()
this.initphysicalExamData()
this.initList() // 工作经历
@@ -4090,7 +4462,7 @@
this.initunemploymentData() // 失业金领取
this.initinsuranceData() // 社保申请
this.initremarkInfoData() // 备注
- this.initlaborTroubleData() // 劳资案件
+ this.initlaborTroubleData() // 仲裁案件
this.initoccupationalData() // 工伤案件
this.initbadRecordData() // 不良记录
this.initaccidentCasesData() // 意外险案件
@@ -4099,7 +4471,7 @@
initphysicalExamData(params = {}) {
params.pageSize = this.pagination.size
params.pageNum = this.pagination.num
- params.empNumb = this.empBaseInfoForm.empNumb
+ params.certificateNumb = this.empBaseInfoForm.certificateNumb
params.delFlag = '0'
this.$get('hr/empPhysicalExam/list', {
...params
@@ -4112,8 +4484,10 @@
initjobChangeData(params = {}) {
params.pageSize = this.pagination.size
params.pageNum = this.pagination.num
- params.empNumb = this.empBaseInfoForm.empNumb
+ params.certificateNumb = this.empBaseInfoForm.certificateNumb
params.delFlag = '0'
+ params.field = 'changeDate'
+ params.order = 'ascending'
this.$get('hr/empJobChange/list', {
...params
}).then((r) => {
@@ -4125,8 +4499,12 @@
initdimissionLogData(params = {}) {
params.pageSize = this.pagination.size
params.pageNum = this.pagination.num
+ params.empStatus = this.empBaseInfoForm.empStatus
+ params.empId = this.empBaseInfoForm.empId
params.dimissionType = ''
params.delFlag = '0'
+ params.field = 'entryDate'
+ params.order = 'ascending'
this.$get('hr/empDimissionlog/list', {
...params
}).then((r) => {
@@ -4138,7 +4516,7 @@
initcontractInfoData(params = {}) {
params.pageSize = this.pagination.size
params.pageNum = this.pagination.num
- params.empNumb = this.empBaseInfoForm.empNumb
+ params.certificateNumb = this.empBaseInfoForm.certificateNumb
params.delFlag = '0'
this.$get('hr/empContractInfo/list', {
...params
@@ -4152,7 +4530,13 @@
this.readon = true
},
gzupdate1() {
+ // const empBaseInfoForm = this.empBaseInfoForm
+ // if (empBaseInfoForm.imagePath.indexOf('data:image/jpeg') === -1) {
+ // this.empBaseInfoForm.imagePath = ''
+ // }
this.$put('hr/empBaseInfo', { ...this.empBaseInfoForm }).then(() => {
+ this.readon = false
+ this.$emit('success')
this.$message({
message: this.$t('tips.updateSuccess'),
type: 'success'
@@ -4160,18 +4544,28 @@
})
},
ExportSavePdf(params = {}) {
- params.pageSize = this.pagination.size
- params.pageNum = this.pagination.num
- params.empNumb = this.empBaseInfoForm.empNumb
-
- this.$download('hr/pdf/contract', {
- ...params
- }, `${this.empBaseInfoForm.empName}.pdf`)
+ this.$confirm('是否确定要导出档案,请耐心等待?', '提示', {
+ confirmButtonText: '确定',
+ cancelButtonText: '取消',
+ type: 'warning'
+ }).then(() => {
+ params.pageSize = this.pagination.size
+ params.pageNum = this.pagination.num
+ params.certificateNumb = this.empBaseInfoForm.certificateNumb
+ this.$download('hr/pdf/contract', {
+ ...params
+ }, `${this.empBaseInfoForm.empName}.pdf`)
+ }).catch(() => {
+ this.$message({
+ type: 'info',
+ message: '已取消'
+ })
+ })
},
initleaveInfoData(params = {}) {
params.pageSize = this.pagination.size
params.pageNum = this.pagination.num
- params.empNumb = this.empBaseInfoForm.empNumb
+ params.certificateNumb = this.empBaseInfoForm.certificateNumb
params.delFlag = '0'
this.$get('hr/empLeaveInfo/list', {
...params
@@ -4184,7 +4578,7 @@
initresignData(params = {}) {
params.pageSize = this.pagination.size
params.pageNum = this.pagination.num
- params.empNumb = this.empBaseInfoForm.empNumb
+ params.certificateNumb = this.empBaseInfoForm.certificateNumb
params.delFlag = '0'
this.$get('hr/empResign/list', {
...params
@@ -4197,7 +4591,7 @@
initunemploymentData(params = {}) {
params.pageSize = this.pagination.size
params.pageNum = this.pagination.num
- params.empNumb = this.empBaseInfoForm.empNumb
+ params.certificateNumb = this.empBaseInfoForm.certificateNumb
params.delFlag = '0'
this.$get('hr/empUnemployment/list', {
...params
@@ -4210,7 +4604,7 @@
initinsuranceData(params = {}) {
params.pageSize = this.pagination.size
params.pageNum = this.pagination.num
- params.empNumb = this.empBaseInfoForm.empNumb
+ params.certificateNumb = this.empBaseInfoForm.certificateNumb
params.delFlag = '0'
this.$get('hr/empInsurance/list', {
...params
@@ -4223,7 +4617,7 @@
initremarkInfoData(params = {}) {
params.pageSize = this.pagination.size
params.pageNum = this.pagination.num
- params.empNumb = this.empBaseInfoForm.empNumb
+ params.certificateNumb = this.empBaseInfoForm.certificateNumb
params.delFlag = '0'
this.$get('hr/empRemarkInfo/list', {
...params
@@ -4236,7 +4630,7 @@
initlaborTroubleData(params = {}) {
params.pageSize = this.pagination.size
params.pageNum = this.pagination.num
- params.empNumb = this.empBaseInfoForm.empNumb
+ params.certificateNumb = this.empBaseInfoForm.certificateNumb
params.delFlag = '0'
this.$get('hr/empLaborTrouble/list', {
...params
@@ -4249,7 +4643,7 @@
initoccupationalData(params = {}) {
params.pageSize = this.pagination.size
params.pageNum = this.pagination.num
- params.empNumb = this.empBaseInfoForm.empNumb
+ params.certificateNumb = this.empBaseInfoForm.certificateNumb
params.delFlag = '0'
this.$get('hr/empOccupational/list', {
...params
@@ -4262,7 +4656,7 @@
initbadRecordData(params = {}) {
params.pageSize = this.pagination.size
params.pageNum = this.pagination.num
- params.empNumb = this.empBaseInfoForm.empNumb
+ params.certificateNumb = this.empBaseInfoForm.certificateNumb
params.delFlag = '0'
this.$get('hr/empBadRecord/list', {
...params
@@ -4278,7 +4672,7 @@
initaccidentCasesData(params = {}) {
params.pageSize = this.pagination.size
params.pageNum = this.pagination.num
- params.empNumb = this.empBaseInfoForm.empNumb
+ params.certificateNumb = this.empBaseInfoForm.certificateNumb
params.delFlag = '0'
this.$get('hr/empAccidentCases/list', {
...params
@@ -4291,7 +4685,7 @@
initdimissionAttendData(params = {}) {
params.pageSize = this.pagination.size
params.pageNum = this.pagination.num
- params.empNumb = this.empBaseInfoForm.empNumb
+ params.certificateNumb = this.empBaseInfoForm.certificateNumb
params.delFlag = '0'
this.$get('hr/empDimissionAttend/list', {
...params
@@ -4304,7 +4698,7 @@
initList(params = {}) {
params.pageSize = this.pagination.size
params.pageNum = this.pagination.num
- params.empNumb = this.empBaseInfoForm.empNumb
+ params.certificateNumb = this.empBaseInfoForm.certificateNumb
params.delFlag = '0'
this.$get('hr/empWorkExperience/list', {
...params
@@ -5013,6 +5407,7 @@
this.workExperienceForm.modifier = row.modifier
this.workExperienceForm.delFlag = row.delFlag
this.workExperienceForm.version = row.version
+ this.thisShowIndex = 1
this.dialogshowArr[1].show = true
},
editPhysicalExam(row) {
@@ -5042,7 +5437,7 @@
this.physicalExamForm.modifier = row.modifier
this.physicalExamForm.delFlag = row.delFlag
this.physicalExamForm.version = row.version
-
+ this.thisShowIndex = 2
this.dialogshowArr[2].show = true
},
editContractInfo(row) {
@@ -5071,7 +5466,7 @@
this.contractInfoForm.modifier = row.modifier
this.contractInfoForm.delFlag = row.delFlag
this.contractInfoForm.version = row.version
-
+ this.thisShowIndex = 3
this.dialogshowArr[3].show = true
},
editDimissionAttend(row) {
@@ -5099,6 +5494,7 @@
this.dimissionAttendForm.delFlag = row.delFlag
this.dimissionAttendForm.version = row.version
this.dimissionAttendForm.remark = row.remark
+ this.thisShowIndex = 4
this.dialogshowArr[4].show = true
},
editLeaveInfo(row) {
@@ -5127,7 +5523,7 @@
this.leaveInfoForm.delFlag = row.delFlag
this.leaveInfoForm.version = row.version
this.leaveInfoForm.remark = row.remark
-
+ this.thisShowIndex = 5
this.dialogshowArr[5].show = true
},
editResign(row) {
@@ -5153,7 +5549,7 @@
this.resignForm.delFlag = row.delFlag
this.resignForm.version = row.version
this.resignForm.remark = row.remark
-
+ this.thisShowIndex = 6
this.dialogshowArr[6].show = true
},
editUnemployment(row) {
@@ -5180,7 +5576,7 @@
this.unemploymentForm.modifier = row.modifier
this.unemploymentForm.delFlag = row.delFlag
this.unemploymentForm.version = row.version
-
+ this.thisShowIndex = 7
this.dialogshowArr[7].show = true
},
editInsurance(row) {
@@ -5198,8 +5594,8 @@
this.insuranceForm.applayDate = row.applayDate
this.insuranceForm.proposer = row.proposer
this.insuranceForm.insuranceGaers = row.insuranceGaers
- this.insuranceForm.reportStatus = row.reportStatus
- this.insuranceForm.applayStatus = row.applayStatus
+ this.insuranceForm.reportStatus = row.reportStatus === 0 ? '' : '' + row.reportStatus
+ this.insuranceForm.applayStatus = row.applayStatus === 0 ? '' : '' + row.applayStatus
this.insuranceForm.auditor = row.auditor
this.insuranceForm.createTime = row.createTime
this.insuranceForm.creator = row.creator
@@ -5208,7 +5604,7 @@
this.insuranceForm.delFlag = row.delFlag
this.insuranceForm.version = row.version
this.insuranceForm.remark = row.remark
-
+ this.thisShowIndex = 8
this.dialogshowArr[8].show = true
},
editAccidentCases(row) {
@@ -5231,7 +5627,7 @@
this.accidentCasesForm.injuredDescribe = row.injuredDescribe
this.accidentCasesForm.hospitalName = row.hospitalName
this.accidentCasesForm.treatmentName = row.treatmentName
- this.accidentCasesForm.hospitalizatioFlag = row.hospitalizatioFlag
+ this.accidentCasesForm.hospitalizatioFlag = '' + row.hospitalizatioFlag
this.accidentCasesForm.bedNumb = row.bedNumb
this.accidentCasesForm.reprotTime = row.reprotTime
this.accidentCasesForm.submitTime = row.submitTime
@@ -5241,7 +5637,7 @@
this.accidentCasesForm.innsureFee = row.innsureFee
this.accidentCasesForm.hrDoDate = row.hrDoDate
this.accidentCasesForm.settleDate = row.settleDate
- this.accidentCasesForm.settleStatus = row.settleStatus
+ this.accidentCasesForm.settleStatus = '' + row.settleStatus
this.accidentCasesForm.remark = row.remark
this.accidentCasesForm.createTime = row.createTime
this.accidentCasesForm.creator = row.creator
@@ -5249,7 +5645,7 @@
this.accidentCasesForm.modifier = row.modifier
this.accidentCasesForm.delFlag = row.delFlag
this.accidentCasesForm.version = row.version
-
+ this.thisShowIndex = 9
this.dialogshowArr[9].show = true
},
editOccupational(row) {
@@ -5272,7 +5668,7 @@
this.occupationalForm.injuredDescribe = row.injuredDescribe
this.occupationalForm.hospitalName = row.hospitalName
this.occupationalForm.treatmentName = row.treatmentName
- this.occupationalForm.hospitalizatioFlag = row.hospitalizatioFlag
+ this.occupationalForm.hospitalizatioFlag = '' + row.hospitalizatioFlag
this.occupationalForm.bedNumb = row.bedNumb
this.occupationalForm.reportTime = row.reportTime
this.occupationalForm.submitTime = row.submitTime
@@ -5291,7 +5687,7 @@
this.occupationalForm.companySubsidy = row.companySubsidy
this.occupationalForm.companyCompensation = row.companyCompensation
this.occupationalForm.jobSubsidy = row.jobSubsidy
- this.occupationalForm.settleStatus = row.settleStatus
+ this.occupationalForm.settleStatus = '' + row.settleStatus
this.occupationalForm.createTime = row.createTime
this.occupationalForm.creator = row.creator
this.occupationalForm.modifyTime = row.modifyTime
@@ -5299,7 +5695,7 @@
this.occupationalForm.delFlag = row.delFlag
this.occupationalForm.version = row.version
this.occupationalForm.remark = row.remark
-
+ this.thisShowIndex = 10
this.dialogshowArr[10].show = true
},
editLaborTrouble(row) {
@@ -5320,7 +5716,7 @@
this.laborTroubleForm.arbitrationReason = row.arbitrationReason
this.laborTroubleForm.reporter = row.reporter
this.laborTroubleForm.arbitrationPay = row.arbitrationPay
- this.laborTroubleForm.arbitrationStatus = row.arbitrationStatus
+ this.laborTroubleForm.arbitrationStatus = '' + row.arbitrationStatus
this.laborTroubleForm.settleDate = row.settleDate
this.laborTroubleForm.createTime = row.createTime
this.laborTroubleForm.creator = row.creator
@@ -5329,7 +5725,7 @@
this.laborTroubleForm.delFlag = row.delFlag
this.laborTroubleForm.version = row.version
this.laborTroubleForm.remark = row.remark
-
+ this.thisShowIndex = 11
this.dialogshowArr[11].show = true
},
editBadRecord(row) {
@@ -5354,6 +5750,7 @@
this.badRecordForm.delFlag = row.delFlag
this.badRecordForm.version = row.version
this.badRecordForm.remark = row.remark
+ this.thisShowIndex = 12
this.dialogshowArr[12].show = true
},
editRemarkInfo(row) {
@@ -5369,6 +5766,7 @@
this.remarkInfoForm.deptName = row.deptName
this.remarkInfoForm.jobName = row.jobName
this.remarkInfoForm.remarkContent = row.remarkContent
+ // this.$set(this.remarkInfoForm, 'remarkContent', row.remarkContent)
this.remarkInfoForm.remarkDate = row.remarkDate
this.remarkInfoForm.createTime = row.createTime
this.remarkInfoForm.creator = row.creator
@@ -5376,7 +5774,7 @@
this.remarkInfoForm.modifier = row.modifier
this.remarkInfoForm.delFlag = row.delFlag
this.remarkInfoForm.version = row.version
-
+ this.thisShowIndex = 13
this.dialogshowArr[13].show = true
},
gzadd(index) {
@@ -5457,9 +5855,9 @@
message: this.$t('tips.deleteSuccess'),
type: 'success'
})
- if (selection === 'onremarkInfoDataselection') {
+ if (selection === 'remarkInfoDataselection') {
this.initremarkInfoData()
- } else if (selection === 'onbadRecordDataselection') {
+ } else if (selection === 'badRecordDataselection') {
this.initbadRecordData()
} else if (selection === 'laborTroubleDataselection') {
this.initlaborTroubleData()
@@ -5503,6 +5901,11 @@
const results = queryString ? restaurants.filter(this.createFilter(queryString)) : restaurants
// 调用 callback 返回建议列表的数据
cb(results)
+ },
+ createFilter(queryString) {
+ return (restaurant) => {
+ return (restaurant.value.toLowerCase().indexOf(queryString.toLowerCase()) === 0)
+ }
},
jobNameSelect(items) {
this.empBaseInfoForm.jobName = items.value
@@ -5606,10 +6009,10 @@
singleDelete(row, names) {
let ids = ''
let urls = ''
- if (names === 'onremarkInfoDataselection') {
+ if (names === 'remarkInfoDataselection') {
ids = row.remarkId
urls = 'empRemarkInfo'
- } else if (names === 'onbadRecordDataselection') {
+ } else if (names === 'badRecordDataselection') {
ids = row.badId
urls = 'empBadRecord'
} else if (names === 'laborTroubleDataselection') {
@@ -5684,9 +6087,45 @@
this.$emit('close')
},
reset() {
- this.$refs.form.clearValidate()
- this.$refs.form.resetFields()
+ if (undefined !== this.$refs.form) {
+ this.$refs.form.clearValidate()
+ this.$refs.form.resetFields()
+ }
+
this.sysConfig = this.initSysConfig()
+ },
+ startDate(rule, value, callback) {
+ // 如果结束日期没选,cb
+ if (!this.contractInfoForm.endDate) {
+ callback()
+ } else {
+ // 结束日期有,进行判断
+ if (this.compareDate(value, this.contractInfoForm.endDate)) {
+ // 如果起始在结束之前
+ callback()
+ } else {
+ callback(new Error('开始日期不能在结束日期之后,请重新选择'))
+ }
+ }
+ },
+ // 验证合同结束日期
+ endDate(rule, value, callback) {
+ // 如果起始日期没选,cb
+ if (!this.contractInfoForm.signingDate) {
+ callback()
+ } else {
+ // 起始日期有,进行判断
+ if (this.compareDate(this.contractInfoForm.signingDate, value)) {
+ // 如果起始在结束之前
+ this.contractInfoForm.contractPeriod = dateDifference(this.contractInfoForm.signingDate, this.contractInfoForm.endDate, 'o')
+ callback()
+ } else {
+ callback(new Error('结束日期不能在开始始日期之前,请重新选择'))
+ }
+ }
+ },
+ compareDate(start, end) {
+ return new Date(end).getTime() > new Date(start).getTime()
}
}
}
@@ -5710,7 +6149,8 @@
padding-top: 8px;
font-weight: 700;
color: #333;
- height: 40px;
+ height: 30px;
+ line-height: 30px;
}
}
@@ -5722,12 +6162,12 @@
height: 90vh;
overflow-y: scroll;
- .jbxxTitle {
+ .jbxxTitle, .jbxxTitle2 {
height: 30px;
line-height: 30px;
padding-left: 15px;
//border-left: 4px solid #a00515;
- margin: 40px 0 20px;
+ margin: 30px 0 20px;
color: #000;
position: relative;
}
@@ -5736,7 +6176,8 @@
margin: 20px 0;
}
- .jbxxTitle::before {
+ .jbxxTitle::before,
+ .jbxxTitle2::before {
content: '';
position: absolute;
left: -10px;
@@ -5877,9 +6318,10 @@
}
.uploading-image {
- width: 100%;
- height: 100%;
+ width: 70%;
+ height: 70%;
display: block;
+ margin: 0 auto;
}
}
@@ -5913,6 +6355,13 @@
/* 设置鼠标经过对勾框,对勾框边框的颜色 */
.myRedCheckBox .el-checkbox__inner:hover {
border-color: #a32c30;
+}
+
+.myRedCheckBox .el-checkbox__label {
+ width: 90%;
+ overflow: hidden;
+ text-overflow: ellipsis;
+ white-space: nowrap;
}
.avatar-uploader .el-upload {
@@ -5971,7 +6420,7 @@
list-style: none;
padding-left: 10px !important;
- >li:last-of-type {
+ > li:last-of-type {
> div:first-of-type {
position: absolute;
left: 4px;
@@ -6000,10 +6449,12 @@
height: 35px;
box-sizing: border-box;
padding-left: 28px !important;
- &:hover {
- color: #a00515;
- cursor: pointer;
- }
+
+ &:hover {
+ color: #a00515;
+ cursor: pointer;
+ }
+
.light {
color: #a00515;
}
@@ -6033,40 +6484,59 @@
<style lang="scss">
.da-dialog {
button.el-dialog__headerbtn {
- height: 30px;
- width: 30px;
- background-color: #333;
- opacity: 0.4;
- line-height: 30px;
- border-radius: 50%;
+ height: 30px;
+ width: 30px;
+ background-color: #a00515;
+ opacity: 0.8;
+ line-height: 30px;
+ border-radius: 50%;
+
i {
color: #fff !important;
}
+
&:hover {
opacity: 0.5;
}
}
+
.el-pagination {
width: 98%;
text-align: right;
}
+
.el-aside {
height: 750px;
overflow: hidden;
}
+
li.el-timeline-item {
padding-bottom: 1px;
height: 35px;
}
-.el-dialog__title {
- font-weight: 700;
-}
+
+ .el-dialog__title {
+ font-weight: 700;
+ }
+
.el-dialog__body {
padding: 10px 20px;
}
}
+
.el-dialog.is-fullscreen {
overflow: hidden;
}
-</style>
+.formjbxx {
+ .el-input.is-disabled .el-input__inner {
+ background-color: #fff !important;
+ color: #333 !important;
+ }
+}
+
+.pri-del-btn {
+ background-color: rgb(64, 158, 255) !important;
+ border-color: rgb(64, 158, 255) !important;
+}
+</style>
--
Gitblit v1.8.0