From 338c1fc6a3de638d84b60a5da064dceef6f0d775 Mon Sep 17 00:00:00 2001
From: luoyb <412940104@qq.com>
Date: 星期二, 23 九月 2025 21:49:11 +0800
Subject: [PATCH] 员工管理界面(在职、离职和智搜的列表、档案、导出)增加了年假天数显示

---
 src/views/user/archivesEdit.vue |  462 +++++++++++++++++++++++++++++++++++++++++++++------------
 1 files changed, 363 insertions(+), 99 deletions(-)

diff --git a/src/views/user/archivesEdit.vue b/src/views/user/archivesEdit.vue
index 2c29286..74d7a2c 100644
--- a/src/views/user/archivesEdit.vue
+++ b/src/views/user/archivesEdit.vue
@@ -153,7 +153,7 @@
               <div class="item-node" />
               <div>
                 <a href="javascript:void(0)" :class="item=='lzaj'?'light':''" @click="goAnchor('lzaj')">
-                  劳资案件
+                  仲裁案件
                 </a>
               </div>
             </li>
@@ -222,7 +222,11 @@
                 <el-row style="width: 100%;">
                   <el-col :span="8">
                     <el-form-item label="编号" prop="empNumb">
-                      <el-input v-model="empBaseInfoForm.empNumb" style="width: 100%;" :disabled="readon ? false : true" />
+                      <el-input
+                        v-model="empBaseInfoForm.empNumb"
+                        style="width: 100%;"
+                        :disabled="readon ? false : true"
+                      />
                     </el-form-item>
                   </el-col>
                   <el-col :span="8">
@@ -244,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"
@@ -284,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"
@@ -296,7 +308,12 @@
                   </el-col>
                   <el-col :span="8">
                     <el-form-item label="民族" prop="nation">
-                      <el-select v-model="empBaseInfoForm.nation" filterable 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"
@@ -316,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"
@@ -347,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"
@@ -370,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"
@@ -385,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"
@@ -420,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"
@@ -464,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"
@@ -495,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"
@@ -509,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"
@@ -532,7 +581,12 @@
                   </el-col>
                   <el-col :span="8">
                     <el-form-item label="相关证件" prop="certificateList">
-                      <el-select v-model="empBaseInfoForm.certificateList" multiple 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"
@@ -540,6 +594,11 @@
                           :value="dict.dicItemCode"
                         />
                       </el-select>
+                    </el-form-item>
+                  </el-col>
+                  <el-col :span="8">
+                    <el-form-item label="年假天数" prop="annualLeave">
+                      <el-input v-model="empBaseInfoForm.annualLeave" disabled />
                     </el-form-item>
                   </el-col>
                 </el-row>
@@ -579,7 +638,10 @@
                 <el-table-column show-overflow-tooltip fixed="right" label="操作" width="120">
                   <template slot-scope="scope">
                     <span class="table-button" @click="editWorkExperience(scope.row,1)">编辑</span>
-                    <span class="table-button" @click="singleDelete(scope.row, 'workExperienceDataselection')">删除</span>
+                    <span
+                      class="table-button"
+                      @click="singleDelete(scope.row, 'workExperienceDataselection')"
+                    >删除</span>
                   </template>
                 </el-table-column>
               </el-table>
@@ -588,7 +650,7 @@
                 :total="workExperienceDatatotal"
                 :page.sync="pagination.num"
                 :limit.sync="pagination.size"
-                @pagination="initList"
+                @pagination="initList()"
               />
             </div>
           </div>
@@ -625,10 +687,22 @@
                 <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="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="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="备注" />
@@ -638,7 +712,7 @@
                 :total="physicalExamDatatotal"
                 :page.sync="pagination.num"
                 :limit.sync="pagination.size"
-                @pagination="initphysicalExamData"
+                @pagination="initphysicalExamData()"
               />
             </div>
           </div>
@@ -676,15 +750,21 @@
                 <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="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>
@@ -707,13 +787,18 @@
                     <span v-text="getIndex(scope.$index)" />
                   </template>
                 </el-table-column>
-                <el-table-column show-overflow-tooltip prop="newDeptName" label="现部门" />
+                <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="changeType"
+                  label="调岗类型"
+                  :formatter="changeTypeFormat"
+                />
                 <el-table-column show-overflow-tooltip prop="changeReason" label="调岗理由" />
               </el-table>
               <pagination
@@ -721,7 +806,7 @@
                 :total="jobChangeDatatotal"
                 :page.sync="pagination.num"
                 :limit.sync="pagination.size"
-                @pagination="initjobChangeData"
+                @pagination="initjobChangeData()"
               />
             </div>
           </div>
@@ -769,7 +854,7 @@
                 :total="leaveInfoDatatotal"
                 :page.sync="pagination.num"
                 :limit.sync="pagination.size"
-                @pagination="initleaveInfoData"
+                @pagination="initleaveInfoData()"
               />
             </div>
           </div>
@@ -814,7 +899,7 @@
                 :total="resignDatatotal"
                 :page.sync="pagination.num"
                 :limit.sync="pagination.size"
-                @pagination="initresignData"
+                @pagination="initresignData()"
               />
             </div>
           </div>
@@ -845,7 +930,10 @@
                 <el-table-column show-overflow-tooltip fixed="right" label="操作" width="120">
                   <template slot-scope="scope">
                     <span class="table-button" @click="editDimissionAttend(scope.row,6)">编辑</span>
-                    <span class="table-button" @click="singleDelete(scope.row, 'dimissionAttendDataselection')">删除</span>
+                    <span
+                      class="table-button"
+                      @click="singleDelete(scope.row, 'dimissionAttendDataselection')"
+                    >删除</span>
                   </template>
                 </el-table-column>
                 <el-table-column v-if="fsnumShow" show-overflow-tooltip prop="dimissionAttendId" label="" />
@@ -863,7 +951,7 @@
                 :total="dimissionAttendDatatotal"
                 :page.sync="pagination.num"
                 :limit.sync="pagination.size"
-                @pagination="initdimissionAttendData"
+                @pagination="initdimissionAttendData()"
               />
             </div>
           </div>
@@ -884,11 +972,18 @@
                 <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 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="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="备注" />
@@ -898,7 +993,7 @@
                 :total="dimissionLogDatatotal"
                 :page.sync="pagination.num"
                 :limit.sync="pagination.size"
-                @pagination="initdimissionLogData"
+                @pagination="initdimissionLogData()"
               />
             </div>
           </div>
@@ -944,7 +1039,7 @@
                 :total="unemploymentDatatotal"
                 :page.sync="pagination.num"
                 :limit.sync="pagination.size"
-                @pagination="initunemploymentData"
+                @pagination="initunemploymentData()"
               />
             </div>
           </div>
@@ -981,9 +1076,24 @@
                 <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="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>
@@ -992,7 +1102,7 @@
                 :total="insuranceDatatotal"
                 :page.sync="pagination.num"
                 :limit.sync="pagination.size"
-                @pagination="initinsuranceData"
+                @pagination="initinsuranceData()"
               />
             </div>
           </div>
@@ -1023,32 +1133,47 @@
                 <el-table-column show-overflow-tooltip fixed="right" label="操作" width="120">
                   <template slot-scope="scope">
                     <span class="table-button" @click="editAccidentCases(scope.row,9)">编辑</span>
-                    <span class="table-button" @click="singleDelete(scope.row, 'accidentCasesDataselection')">删除</span>
+                    <span
+                      class="table-button"
+                      @click="singleDelete(scope.row, 'accidentCasesDataselection')"
+                    >删除</span>
                   </template>
                 </el-table-column>
                 <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="injuredAddress" label="受伤地点" width="200" />
                 <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="injuredDescribe" label="受伤经过描述" width="300" />
+                <el-table-column show-overflow-tooltip prop="injuredDiacrisis" label="意外险诊断" width="150" />
+                <!--                <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="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-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>
@@ -1090,27 +1215,39 @@
                 <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="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-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>
@@ -1140,12 +1277,23 @@
                 </el-table-column>
                 <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="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="arbitrationStatus"
+                  label="是否结案"
+                  width="100"
+                  :formatter="arbitrationStatusFormat"
+                />
                 <el-table-column show-overflow-tooltip prop="settleDate" label="案结日期" width="100" />
               </el-table>
               <pagination
@@ -1153,7 +1301,7 @@
                 :total="laborTroubleDatatotal"
                 :page.sync="pagination.num"
                 :limit.sync="pagination.size"
-                @pagination="initlaborTroubleData"
+                @pagination="initlaborTroubleData()"
               />
             </div>
           </div>
@@ -1198,7 +1346,7 @@
                 :total="badRecordDatatotal"
                 :page.sync="pagination.num"
                 :limit.sync="pagination.size"
-                @pagination="initbadRecordData"
+                @pagination="initbadRecordData()"
               />
             </div>
           </div>
@@ -1248,7 +1396,7 @@
                 :total="remarkInfoDatatotal"
                 :page.sync="pagination.num"
                 :limit.sync="pagination.size"
-                @pagination="initremarkInfoData"
+                @pagination="initremarkInfoData()"
               />
             </div>
           </div>
@@ -1383,12 +1531,28 @@
                                 :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
+                                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;text-align: center">
-                                  <el-checkbox v-model="checkedArr[index * 8 + nodeIndex].isChecked" class="myRedCheckBox">{{ node.filesname }}</el-checkbox>
+                                  <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">
+                              <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;"
@@ -1396,7 +1560,10 @@
                                     :preview-src-list="srcList"
                                     @click="clickImg(node)"
                                   />
-                                  <el-checkbox v-model="checkedArr[index * 8 + nodeIndex].isChecked" class="myRedCheckBox">
+                                  <el-checkbox
+                                    v-model="checkedArr[index * 8 + nodeIndex].isChecked"
+                                    class="myRedCheckBox"
+                                  >
 
                                     {{ node.filesname }}
                                   </el-checkbox>
@@ -2273,6 +2440,9 @@
                   />
                 </el-select>
               </el-form-item>
+              <el-form-item label="备注">
+                <el-input v-model="accidentCasesForm.remark" />
+              </el-form-item>
             </el-col>
           </el-row>
         </el-form>
@@ -2478,7 +2648,7 @@
 
         </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"
@@ -2723,7 +2893,7 @@
   </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'
@@ -2874,7 +3044,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' }],
@@ -2937,11 +3107,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: {
@@ -2955,10 +3125,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: {
@@ -3555,7 +3725,8 @@
         modifyTime: '',
         modifier: '',
         empStatus: 0,
-        version: ''
+        version: '',
+        annualLeave: ''
       },
       fsnumShow: false,
       badRecordForm: {
@@ -3689,7 +3860,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 => {
@@ -4126,12 +4297,14 @@
       }
       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.allDeptName = val.allDeptName
+      this.remarkInfoForm.certificateNumb = val.certificateNumb
       this.remarkInfoForm.empId = val.empId
       this.remarkInfoForm.empName = val.empName
       this.remarkInfoForm.empNumb = val.empNumb
@@ -4140,7 +4313,11 @@
       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
@@ -4149,7 +4326,10 @@
       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
@@ -4158,7 +4338,10 @@
       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
@@ -4167,7 +4350,10 @@
       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
@@ -4176,7 +4362,10 @@
       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
@@ -4185,7 +4374,10 @@
       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
@@ -4194,7 +4386,10 @@
       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
@@ -4203,7 +4398,10 @@
       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
@@ -4212,7 +4410,10 @@
       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
@@ -4221,7 +4422,10 @@
       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
@@ -4230,7 +4434,10 @@
       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
@@ -4239,6 +4446,19 @@
       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()
@@ -4251,7 +4471,7 @@
       this.initunemploymentData() // 失业金领取
       this.initinsuranceData() // 社保申请
       this.initremarkInfoData() // 备注
-      this.initlaborTroubleData() // 劳资案件
+      this.initlaborTroubleData() // 仲裁案件
       this.initoccupationalData() // 工伤案件
       this.initbadRecordData() // 不良记录
       this.initaccidentCasesData() // 意外险案件
@@ -5383,8 +5603,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
@@ -5416,7 +5636,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
@@ -5426,7 +5646,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
@@ -5457,7 +5677,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
@@ -5476,7 +5696,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
@@ -5505,7 +5725,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
@@ -5882,6 +6102,39 @@
       }
 
       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()
     }
   }
 }
@@ -5918,7 +6171,7 @@
     height: 90vh;
     overflow-y: scroll;
 
-    .jbxxTitle,.jbxxTitle2 {
+    .jbxxTitle, .jbxxTitle2 {
       height: 30px;
       line-height: 30px;
       padding-left: 15px;
@@ -5933,7 +6186,7 @@
     }
 
     .jbxxTitle::before,
-    .jbxxTitle2::before{
+    .jbxxTitle2::before {
       content: '';
       position: absolute;
       left: -10px;
@@ -6116,7 +6369,7 @@
 .myRedCheckBox .el-checkbox__label {
   width: 90%;
   overflow: hidden;
-  text-overflow:ellipsis;
+  text-overflow: ellipsis;
   white-space: nowrap;
 }
 
@@ -6176,7 +6429,7 @@
   list-style: none;
   padding-left: 10px !important;
 
-  >li:last-of-type {
+  > li:last-of-type {
     > div:first-of-type {
       position: absolute;
       left: 4px;
@@ -6205,10 +6458,12 @@
       height: 35px;
       box-sizing: border-box;
       padding-left: 28px !important;
-       &:hover {
-         color: #a00515;
-         cursor: pointer;
-       }
+
+      &:hover {
+        color: #a00515;
+        cursor: pointer;
+      }
+
       .light {
         color: #a00515;
       }
@@ -6238,38 +6493,46 @@
 <style lang="scss">
 .da-dialog {
   button.el-dialog__headerbtn {
-      height: 30px;
-      width: 30px;
+    height: 30px;
+    width: 30px;
     background-color: #a00515;
     opacity: 0.8;
-      line-height: 30px;
-      border-radius: 50%;
+    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;
 }
@@ -6280,6 +6543,7 @@
     color: #333 !important;
   }
 }
+
 .pri-del-btn {
   background-color: rgb(64, 158, 255) !important;
   border-color: rgb(64, 158, 255) !important;

--
Gitblit v1.8.0