yz
2021-03-05 eb897b781bfc18df4f87a8c78babd3834b2d269f
src/views/user/search.vue
@@ -220,7 +220,7 @@
              已为您搜索出<span style="color:red">{{ total }}</span>条符合条件的记录
            </el-col>
            <el-col :span="3">
              <el-button size="mini" class="hr-but" type="success" @click.native="showDcyg(0)">
              <el-button size="mini" class="hr-but" type="success" @click.native="exportExcel">
                {{ $t('table.export') }}
              </el-button>
            </el-col>
@@ -232,10 +232,10 @@
            <el-table-column prop="jobName" label="岗位" />
            <el-table-column prop="empName" label="姓名" />
            <el-table-column prop="certificateNumb" label="身份证号码" width="180" />
            <el-table-column prop="sexName" label="性别" width="50" />
            <el-table-column prop="sex" label="性别" width="50" :formatter="sexFormat" />
            <el-table-column prop="age" label="年龄" width="50" />
            <el-table-column prop="educationName" label="学历" />
            <el-table-column prop="nativePlaceName" label="籍贯" />
            <el-table-column prop="education" label="学历" :formatter="educationFormat" />
            <el-table-column prop="nativePlace" label="籍贯" :formatter="nativePlaceFormat" />
            <el-table-column prop="telePhone" label="电话" />
            <el-table-column prop="empStatus" label="员工状态">
              <template slot-scope="{row}">
@@ -461,7 +461,7 @@
            <el-table-column prop="empNumb" label="员工编号" width="100" />
            <el-table-column prop="empName" label="员工姓名" width="100" />
            <el-table-column prop="certificateNumb" label="身份证号码" width="170" />
            <el-table-column prop="sex" label="性别" width="50" />
            <el-table-column prop="sex" label="性别" width="50" :formatter="sexFormat" />
            <el-table-column prop="workUnit" label="工作单位" width="220" />
            <el-table-column prop="beginDate" label="开始日期" width="100" />
            <el-table-column prop="endDate" label="结束日期" width="100" />
@@ -506,8 +506,12 @@
            </el-col>
            <el-col :span="4">心电图:
              <el-select v-model="queryParams.ecg" style="width:100px">
                <el-option label="正常" value="1" />
                <el-option label="异常" value="0" />
                <el-option
                  v-for="dict in ecgOptions"
                  :key="dict.dicItemCode"
                  :label="dict.dicItemName"
                  :value="dict.dicItemCode"
                />
              </el-select>
            </el-col>
            <el-col :span="3">体检结论:
@@ -530,25 +534,18 @@
          </el-row>
          <el-table ref="physicalExamTable" :data="physicalExamData" style="width: 100%;height: 70%;">
            <el-table-column type="index" label="序号" width="50" align="center" />
            <el-table-column prop="deptName" label="护卫点" />
            <el-table-column prop="empNumb" label="员工编号" />
            <el-table-column prop="empName" label="员工姓名" />
            <el-table-column prop="deptName" label="护卫点" width="150" />
            <el-table-column prop="jobName" label="岗位" />
            <el-table-column prop="empName" label="员工姓名" width="100" />
            <el-table-column prop="certificateNumb" label="身份证号码" width="180" />
            <el-table-column prop="sex" label="性别" width="50" />
            <el-table-column prop="hospital" label="体检医院" />
            <el-table-column prop="physicalExamDate" label="体检日期" />
            <el-table-column prop="physicalExamType" label="体检类型">
              <template slot-scope="{row}">
                {{ transPhysicalExamType(row.physicalExamType) }}
              </template>
            </el-table-column>
            <el-table-column prop="sex" label="性别" width="50" :formatter="sexFormat" />
            <el-table-column prop="hospital" label="体检医院" width="150" />
            <el-table-column prop="physicalExamDate" label="体检日期" width="100" />
            <el-table-column prop="physicalExamType" label="体检类型" :formatter="typeFormat" />
            <el-table-column prop="bloodPressure" label="血压" />
            <el-table-column prop="transaminase" label="转氨酶" />
            <el-table-column prop="ecg" label="心电图">
              <template slot-scope="{row}">
                {{ transEcg(row.ecg) }}
              </template>
            </el-table-column>
            <el-table-column prop="ecg" label="心电图" :formatter="ecgNameFormat" />
            <el-table-column prop="conclusion" label="体检结论" />
            <el-table-column prop="reviewRecord" label="复查记录" />
            <el-table-column prop="remark" label="备注" />
@@ -628,18 +625,14 @@
          <el-table ref="contractInfoTable" :data="contractInfoData" style="width: 100%;height: 70%;">
            <el-table-column type="index" label="序号" width="50" align="center" />
            <el-table-column prop="empNumb" label="员工编号" width="180" />
            <el-table-column prop="deptName" label="护卫点" width="180" />
            <el-table-column prop="jobName" label="岗位" width="180" />
            <el-table-column prop="empName" label="员工姓名" width="180" />
            <el-table-column prop="certificateNumb" label="身份证号码" width="180" />
            <el-table-column prop="deptName" label="护卫点" width="180" />
            <!-- <el-table-column prop="jobName" label="岗位" width="180" /> -->
            <el-table-column prop="signingDate" label="合同签订日期" width="180" />
            <el-table-column prop="endDate" label="合同结束日期" width="180" />
            <el-table-column prop="contractPeriod" label="合同期限(年)" width="180" />
            <el-table-column prop="contractStatus" label="合同状态" width="180">
              <template slot-scope="{row}">
                {{ transContractStatus(row.contractStatus,row.endDate) }}
              </template>
            </el-table-column>
            <el-table-column prop="contractStatus" label="合同状态" width="180" :formatter="contractStatusFormat" />
            <el-table-column prop="transactor" label="合同办理人" width="180" />
          </el-table>
        </div>
@@ -660,10 +653,12 @@
            </el-col>
            <el-col :span="2.5">考勤年月
              <el-select v-model="queryParams.attendYear" style="width:100px">
                <el-option label="2021" value="2021" />
                <el-option label="2020" value="2020" />
                <el-option label="2019" value="2019" />
                <el-option label="2018" value="2018" />
                <el-option
                  v-for="dict in attendYearOptions"
                  :key="dict.dicItemCode"
                  :label="dict.dicItemName"
                  :value="dict.dicItemCode"
                />
              </el-select>
              <el-select v-model="queryParams.attendMonth" style="width:100px">
                <el-option label="12" value="12" />
@@ -703,11 +698,8 @@
          <el-table ref="dimissionAttendTable" :data="dimissionAttendData" style="width: 100%;height: 70%;">
            <el-table-column type="index" label="序号" width="50" align="center" />
            <el-table-column prop="empNumb" label="员工编号" width="180" />
            <el-table-column prop="deptName" label="护卫点" width="180" />
            <el-table-column prop="jobName" label="岗位名称" width="180" />
            <el-table-column prop="empName" label="员工姓名" width="180" />
            <el-table-column prop="certificateNumb" label="身份证号码" width="180" />
            <el-table-column prop="attendMonth" label="离职考勤月份" width="180" />
            <el-table-column prop="empName" label="姓名" width="180" />
            <el-table-column prop="attendMonth" label="离职考勤年月" width="180" />
            <el-table-column prop="attendDays" label="出勤天数" width="180" />
            <el-table-column prop="overtimeDay" label="加班(天)" width="180" />
            <el-table-column prop="overtimeHour" label="加班(小时)" width="180" />
@@ -715,6 +707,12 @@
            <el-table-column prop="leaveDay" label="请假(天)" width="180" />
            <el-table-column prop="absenteeism" label="旷工(天)" width="180" />
            <el-table-column prop="remark" label="备注" width="180" />
            <!-- <el-table-column prop="deptName" label="护卫点" width="180" />
            <el-table-column prop="jobName" label="岗位名称" width="180" />
            <el-table-column prop="empName" label="员工姓名" width="180" />
            <el-table-column prop="certificateNumb" label="身份证号码" width="180" />
            <el-table-column prop="attendMonth" label="离职考勤月份" width="180" /> -->
          </el-table>
        </div>
@@ -785,19 +783,15 @@
            <el-table-column type="index" label="序号" width="50" align="center" />
            <el-table-column prop="empNumb" label="员工编号" width="180" />
            <el-table-column prop="deptName" label="护卫点" width="180" />
            <el-table-column prop="jobName" label="岗位名称" width="180" />
            <el-table-column prop="empName" label="员工姓名" width="180" />
            <el-table-column prop="jobName" label="名称" width="100" />
            <el-table-column prop="empName" label="姓名" width="100" />
            <el-table-column prop="beginTime" label="开始时间" width="180" />
            <el-table-column prop="endTime" label="结束时间" width="180" />
            <el-table-column prop="leaveDay" label="请假天数" width="180" />
            <el-table-column prop="leaveType" label="请假类型" width="180">
              <template slot-scope="{row}">
                {{ transLeaveType(row.leaveType) }}
              </template>
            </el-table-column>
            <el-table-column prop="leaveDay" label="请假天数" />
            <el-table-column prop="leaveType" label="请假类型" width="180" :formatter="leaveTypeFormat" />
            <el-table-column prop="returnDate" label="到岗时间" width="180" />
            <el-table-column prop="reporter" label="报备人" width="180" />
            <el-table-column prop="remark" label="备注" width="180" />
            <el-table-column prop="remark" label="备注" width="280" />
          </el-table>
        </div>
@@ -850,15 +844,15 @@
          </el-row>
          <el-table ref="resignTable" :data="resignData" style="width: 100%;height: 70%;">
            <el-table-column type="index" label="序号" width="50" align="center" />
            <el-table-column prop="empNumb" label="员工编号" width="150" />
            <el-table-column prop="deptName" label="护卫点" width="180" />
            <el-table-column prop="jobName" label="岗位名" width="180" />
            <el-table-column prop="empNumb" label="员工编号" width="180" />
            <el-table-column prop="empName" label="员工姓名" width="180" />
            <el-table-column prop="jobName" label="岗位" width="100" />
            <el-table-column prop="empName" label="员工姓名" width="150" />
            <el-table-column prop="certificateNumb" label="身份证号码" width="180" />
            <el-table-column prop="applayDate" label="辞职申请日期" width="180" />
            <el-table-column prop="reason" label="辞职事由" width="180" />
            <el-table-column prop="reporter" label="汇报人" width="180" />
            <el-table-column prop="remark" label="备注" width="180" />
            <el-table-column prop="reason" label="辞职事由" width="200" />
            <el-table-column prop="reporter" label="汇报人" width="150" />
            <el-table-column prop="remark" label="备注" width="200" />
          </el-table>
        </div>
@@ -911,16 +905,16 @@
          </el-row>
          <el-table ref="unemploymentTable" :data="unemploymentData" style="width: 100%;height: 70%;">
            <el-table-column type="index" label="序号" width="50" align="center" />
            <el-table-column prop="deptName" label="护卫点" width="180" />
            <el-table-column prop="jobName" label="岗位名称" width="180" />
            <el-table-column prop="empNumb" label="员工编号" width="180" />
            <el-table-column prop="empName" label="姓名" width="180" />
            <el-table-column prop="deptName" label="护卫点" width="120" />
            <el-table-column prop="jobName" label="岗位" width="120" />
            <el-table-column prop="empNumb" label="员工编号" width="150" />
            <el-table-column prop="empName" label="姓名" width="120" />
            <el-table-column prop="certificateNumb" label="身份证号码" width="180" />
            <el-table-column prop="applayDate" label="失业金申请日期" width="180" />
            <el-table-column prop="applayReason" label="申报事由" width="180" />
            <el-table-column prop="reporter" label="汇报人" width="180" />
            <el-table-column prop="auditor" label="审核人" width="180" />
            <el-table-column prop="remark" label="备注" width="180" />
            <el-table-column prop="remark" label="备注" width="280" />
          </el-table>
        </div>
@@ -980,27 +974,15 @@
          </el-row>
          <el-table ref="insuranceTable" :data="insuranceData" style="width: 100%;height: 70%;">
            <el-table-column type="index" label="序号" width="50" align="center" />
            <el-table-column prop="empNumb" label="员工编号" width="180" />
            <el-table-column prop="empName" label="姓名" width="180" />
            <el-table-column prop="empNumb" label="员工编号" width="150" />
            <el-table-column prop="empName" label="姓名" width="150" />
            <el-table-column prop="certificateNumb" label="身份证号码" width="180" />
            <el-table-column prop="deptName" label="护卫点" width="180" />
            <el-table-column prop="applayDate" label="社保申请日期" width="180" />
            <el-table-column prop="proposer" label="申请人" width="180" />
            <el-table-column prop="insuranceGaers" label="社保档位" width="180">
              <template slot-scope="{row}">
                {{ transInsuranceGaers(row.insuranceGaers) }}
              </template>
            </el-table-column>
            <el-table-column prop="reportStatus" label="是否已报告" width="180">
              <template slot-scope="{row}">
                {{ transReportStatus(row.reportStatus) }}
              </template>
            </el-table-column>
            <el-table-column prop="applayStatus" label="状态" width="180">
              <template slot-scope="{row}">
                {{ transApplayStatus(row.applayStatus) }}
              </template>
            </el-table-column>
            <el-table-column prop="deptName" label="护卫点" width="150" />
            <el-table-column prop="applayDate" label="社保申请日期" width="150" />
            <el-table-column prop="proposer" label="申请人" />
            <el-table-column prop="insuranceGaers" label="社保档位" width="180" :formatter="insuranceGaersFormat" />
            <el-table-column prop="reportStatus" label="是否已报告" width="100" :formatter="reportStatusFormat" />
            <el-table-column prop="applayStatus" label="状态" width="100" :formatter="applayStatusFormat" />
            <el-table-column prop="auditor" label="审核人" width="180" />
            <el-table-column prop="remark" label="备注" width="280" />
          </el-table>
@@ -1052,9 +1034,12 @@
            </el-col>
            <el-col :span="4">是否住院:
              <el-select v-model="queryParams.hospitalizatioFlag" style="width:100px">
                <el-option value="" label="全部" />
                <el-option label="未住院" value="0" />
                <el-option label="已住院" value="1" />
                <el-option
                  v-for="dict in hospitalizatioFlagOptions"
                  :key="dict.dicItemCode"
                  :label="dict.dicItemName"
                  :value="dict.dicItemCode"
                />
              </el-select>
            </el-col>
            <el-col :span="4">案结状态:
@@ -1081,10 +1066,10 @@
          </el-row>
          <el-table ref="accidentCasesTable" :data="accidentCasesData" style="width: 100%;height: 70%;">
            <el-table-column type="index" label="序号" width="50" align="center" />
            <el-table-column prop="empNumb" label="员工编号" width="180" />
            <el-table-column prop="deptName" label="护卫点" width="180" />
            <el-table-column prop="jobName" label="岗位名称" width="180" />
            <el-table-column prop="empName" label="姓名" width="180" />
            <el-table-column prop="empNumb" label="员工编号" width="150" />
            <el-table-column prop="deptName" label="护卫点" width="120" />
            <el-table-column prop="jobName" label="岗位" width="120" />
            <el-table-column prop="empName" label="姓名" width="120" />
            <el-table-column prop="certificateNumb" label="身份证号码" width="180" />
            <el-table-column prop="injuredTime" label="受伤日期" width="180" />
            <el-table-column prop="injuredAddress" label="受伤地点" width="180" />
@@ -1093,22 +1078,17 @@
            <el-table-column prop="injuredDiacrisis" label="意外险诊断" width="180" />
            <el-table-column prop="hospitalName" label="就诊医院" width="180" />
            <el-table-column prop="treatmentName" label="就诊科室" width="180" />
            <el-table-column prop="hospitalizatioFlag" label="是否住院" width="180">
              <template slot-scope="{row}">
                {{ transHospitalizatioFlag(row.hospitalizatioFlag) }}
              </template>
            </el-table-column>
            <el-table-column prop="bedNumb" label="床号" width="180" />
            <el-table-column prop="reprotTime" label="报案时间" width="180" />
            <el-table-column prop="submitTime" label="递交资料时间" width="180" />
            <el-table-column prop="sbumitBy" label="递交人" width="180" />
            <el-table-column prop="hospitalizatioFlag" label="是否住院" width="100" :formatter="hospitalizatioFlagFormat" />
            <el-table-column prop="bedNumb" label="床号" />
            <el-table-column prop="reprotTime" label="报案时间" width="150" />
            <el-table-column prop="submitTime" label="递交资料时间" width="150" />
            <el-table-column prop="sbumitBy" label="递交人" width="120" />
            <el-table-column prop="expensesFee" label="医疗总费用" width="180" />
            <el-table-column prop="settleStatus" label="案结状态" width="180">
              <template slot-scope="{row}">
                {{ transArbitrationStatus(row.settleStatus) }}
              </template>
            </el-table-column>
            <el-table-column prop="innsureFee" label="保险赔付费用" width="180" />
            <el-table-column prop="expenseReport" label="保单" width="180" />
            <el-table-column prop="hrDoDate" label="人事处理时间" width="180" />
            <el-table-column prop="settleStatus" label="状态" width="100" :formatter="settleStatusFormat" />
            <el-table-column prop="settleDate" label="结案时间" width="150" />
          </el-table>
        </div>
@@ -1158,16 +1138,22 @@
            </el-col>
            <el-col :span="4">是否住院:
              <el-select v-model="queryParams.hospitalizatioFlag" style="width:100px">
                <el-option value="" label="全部" />
                <el-option label="未住院" value="0" />
                <el-option label="已住院" value="1" />
                <el-option
                  v-for="dict in hospitalizatioFlagOptions"
                  :key="dict.dicItemCode"
                  :label="dict.dicItemName"
                  :value="dict.dicItemCode"
                />
              </el-select>
            </el-col>
            <el-col :span="4">案结状态:
              <el-select v-model="queryParams.settleStatus" style="width:100px">
                <el-option value="" label="全部" />
                <el-option value="1" label="已结案" />
                <el-option value="0" label="未结案" />
                <el-option
                  v-for="dict in settleStatusOptions"
                  :key="dict.dicItemCode"
                  :label="dict.dicItemName"
                  :value="dict.dicItemCode"
                />
              </el-select>
            </el-col>
            <el-col :span="4">
@@ -1187,10 +1173,10 @@
          </el-row>
          <el-table ref="occupationalTable" :data="occupationalData" style="width: 100%;height: 70%;">
            <el-table-column type="index" label="序号" width="50" align="center" />
            <el-table-column prop="deptName" label="护卫点" width="180" />
            <el-table-column prop="jobName" label="岗位" width="180" />
            <el-table-column prop="deptName" label="护卫点" width="150" />
            <el-table-column prop="jobName" label="岗位" width="150" />
            <el-table-column prop="empNumb" label="员工编号" width="180" />
            <el-table-column prop="empName" label="姓名" width="180" />
            <el-table-column prop="empName" label="姓名" width="150" />
            <el-table-column prop="certificateNumb" label="身份证号码" width="180" />
            <el-table-column prop="injuredTime" label="受伤日期" width="180" />
            <el-table-column prop="injuredAddress" label="受伤地点" width="180" />
@@ -1199,22 +1185,16 @@
            <el-table-column prop="injuredDiacrisis" label="工伤诊断" width="180" />
            <el-table-column prop="hospitalName" label="就诊医院" width="180" />
            <el-table-column prop="treatmentName" label="就诊科室" width="180" />
            <el-table-column prop="hospitalizatioFlag" label="是否住院" width="180">
              <template slot-scope="{row}">
                {{ transHospitalizatioFlag(row.hospitalizatioFlag) }}
              </template>
            </el-table-column>
            <el-table-column prop="bedNumb" label="床号" width="180" />
            <el-table-column prop="reportTime" label="报案时间" width="180" />
            <el-table-column prop="submitTime" label="递交资料时间" width="180" />
            <el-table-column prop="hospitalizatioFlag" label="是否住院" width="100" :formatter="hospitalizatioFlagFormat" />
            <el-table-column prop="bedNumb" label="床号" width="100" />
            <el-table-column prop="reportTime" label="报案时间" width="150" />
            <el-table-column prop="submitTime" label="递交资料时间" width="150" />
            <el-table-column prop="sbumitBy" label="递交人" width="180" />
            <el-table-column prop="expensesFee" label="医疗总费用" width="180" />
            <el-table-column prop="compensated" label="已赔付医药费用" width="180" />
            <el-table-column prop="settleStatus" label="状态" width="180">
              <template slot-scope="{row}">
                {{ transArbitrationStatus(row.settleStatus) }}
              </template>
            </el-table-column>
            <el-table-column prop="expensesFee" label="医疗总费用" width="100" />
            <el-table-column prop="innsureFee" label="保险赔付费用" width="100" />
            <el-table-column prop="hrDoDate" label="人事处理时间" width="150" />
            <el-table-column prop="settleStatus" label="状态" width="100" :formatter="settleStatusFormat" />
            <el-table-column prop="settleDate" label="结案时间" width="150" />
          </el-table>
        </div>
@@ -1249,10 +1229,12 @@
            </el-col>
            <el-col :span="4">仲裁类型:
              <el-select v-model="queryParams.arbitrationType" style="width:100px">
                <el-option value="" label="全部" />
                <el-option label="劳资纠纷" value="01" />
                <el-option label="民事纠纷" value="02" />
                <el-option label="合同纠纷" value="03" />
                <el-option
                  v-for="dict in arbitrationTypeOptions"
                  :key="dict.dicItemCode"
                  :label="dict.dicItemName"
                  :value="dict.dicItemCode"
                />
              </el-select>
            </el-col>
            <el-col :span="4">仲裁事由:
@@ -1260,9 +1242,12 @@
            </el-col>
            <el-col :span="4">案结状态:
              <el-select v-model="queryParams.arbitrationStatus" style="width:100px">
                <el-option value="" label="全部" />
                <el-option value="1" label="已结案" />
                <el-option value="0" label="未结案" />
                <el-option
                  v-for="dict in settleStatusOptions"
                  :key="dict.dicItemCode"
                  :label="dict.dicItemName"
                  :value="dict.dicItemCode"
                />
              </el-select>
            </el-col>
            <el-col :span="4">
@@ -1282,26 +1267,18 @@
          </el-row>
          <el-table ref="laborTroubleTable" :data="laborTroubleData" style="width: 100%;height: 70%;">
            <el-table-column type="index" label="序号" width="50" align="center" />
            <el-table-column prop="deptName" label="护卫点" width="180" />
            <el-table-column prop="deptName" label="护卫点" width="150" />
            <el-table-column prop="empNumb" label="员工编号" width="180" />
            <el-table-column prop="empName" label="姓名" width="180" />
            <el-table-column prop="empName" label="姓名" width="150" />
            <el-table-column prop="certificateNumb" label="身份证号码" width="180" />
            <el-table-column prop="arbitrationDate" label="仲裁日期" width="180" />
            <el-table-column prop="arbitrationType" label="仲裁类型" width="180">
              <template slot-scope="{row}">
                {{ transArbitrationType(row.arbitrationType) }}
              </template>
            </el-table-column>
            <el-table-column prop="arbitrationReason" label="仲裁事由" width="180" />
            <el-table-column prop="reporter" label="汇报人" width="180" />
            <el-table-column prop="remark" label="备注" width="180" />
            <el-table-column prop="arbitrationPay" label="仲裁赔付(元)" width="180" />
            <el-table-column prop="arbitrationStatus" label="状态" width="180">
              <template slot-scope="{row}">
                {{ transArbitrationStatus(row.arbitrationStatus) }}
              </template>
            </el-table-column>
            <el-table-column prop="settleDate" label="案结日期" width="180" />
            <el-table-column prop="arbitrationDate" label="仲裁日期" width="150" />
            <el-table-column prop="arbitrationType" label="仲裁类型" width="150" :formatter="arbitrationTypeFormat" />
            <el-table-column prop="arbitrationReason" label="仲裁事由" width="150" />
            <el-table-column prop="reporter" label="汇报人" width="150" />
            <el-table-column prop="remark" label="备注" width="200" />
            <el-table-column prop="arbitrationPay" label="仲裁赔付(元)" width="100" />
            <el-table-column prop="arbitrationStatus" label="状态" width="100" :formatter="arbitrationStatusFormat" />
            <el-table-column prop="settleDate" label="案结日期" width="150" />
          </el-table>
        </div>
@@ -1354,14 +1331,14 @@
          </el-row>
          <el-table ref="badRecordTable" :data="badRecordData" style="width: 100%;height: 70%;">
            <el-table-column type="index" label="序号" width="50" align="center" />
            <el-table-column prop="deptName" label="护卫点" width="180" />
            <el-table-column prop="deptName" label="护卫点" width="140" />
            <el-table-column prop="empNumb" label="员工编号" width="180" />
            <el-table-column prop="empName" label="姓名" width="180" />
            <el-table-column prop="empName" label="姓名" width="140" />
            <el-table-column prop="certificateNumb" label="身份证号码" width="180" />
            <el-table-column prop="badDate" label="不良记录日期" width="180" />
            <el-table-column prop="badContent" label="不良记录描述" width="180" />
            <el-table-column prop="reporter" label="汇报人" width="180" />
            <el-table-column prop="remark" label="备注" width="180" />
            <el-table-column prop="badDate" label="不良记录日期" width="140" />
            <el-table-column prop="badContent" label="不良记录描述" width="280" />
            <el-table-column prop="reporter" label="汇报人" width="100" />
            <el-table-column prop="remark" label="备注" width="280" />
          </el-table>
        </div>
@@ -1414,11 +1391,12 @@
          </el-row>
          <el-table ref="remarkInfoTable" :data="remarkInfoData" style="width: 100%;height: 70%;">
            <el-table-column type="index" label="序号" width="50" align="center" />
            <el-table-column prop="deptName" label="护卫点" width="180" />
            <el-table-column prop="empNumb" label="员工编号" width="180" />
            <el-table-column prop="empName" label="姓名" width="180" />
            <el-table-column prop="deptName" label="护卫点" width="140" />
            <el-table-column prop="jobName" label="岗位" width="140" />
            <el-table-column prop="empName" label="姓名" width="140" />
            <el-table-column prop="remarkDate" label="备注日期" width="180" />
            <el-table-column prop="remarkContent" label="备注信息" width="400" />
            <el-table-column prop="remarkContent" label="备注信息" />
          </el-table>
        </div>
        <div v-show="showArr[14].show">
@@ -1454,8 +1432,12 @@
            </el-col>
            <el-col :span="6">调岗类型:
              <el-select v-model="queryParams.changeType" size="small" style="width:200px">
                <el-option label="升职" value="2" />
                <el-option label="调动" value="3" />
                <el-option
                  v-for="dict in changeTypeOptions"
                  :key="dict.dicItemCode"
                  :label="dict.dicItemName"
                  :value="dict.dicItemCode"
                />
              </el-select>
            </el-col>
            <el-col :span="6">
@@ -1476,18 +1458,15 @@
          <el-table ref="jobChangeTable" :data="jobChangeData" style="width: 100%;height: 70%;">
            <el-table-column type="selection" width="55" />
            <el-table-column prop="empNumb" label="员工编号" width="180" />
            <el-table-column prop="certificateNumb" label="身份证号码" width="180" />
            <!-- <el-table-column prop="certificateNumb" label="身份证号码" width="180" /> -->
            <el-table-column prop="newDeptName" label="现部门" />
            <el-table-column prop="newJobName" label="现岗位" />
            <el-table-column prop="empName" label="姓名" width="180" />
            <el-table-column prop="oldDeptName" label="原部门" />
            <el-table-column prop="oldJobName" label="原岗位" />
            <el-table-column prop="changeDate" label="调岗日期" />
            <el-table-column prop="changeType" label="调岗类型">
              <template slot-scope="{row}">
                {{ transChangeType(row.changeType) }}
              </template>
            </el-table-column>
            <el-table-column prop="changeType" label="调岗类型" :formatter="changeTypeFormat" />
            <el-table-column prop="changeReason" label="调岗理由描述" width="380" />
          </el-table>
        </div>
        <div v-show="showArr[15].show">
@@ -1536,12 +1515,12 @@
            </el-col>
            <el-col :span="3">离职类型:
              <el-select v-model="queryParams.dimissionType" style="width:100px">
                <el-option label="全部" value="" />
                <el-option label="正常离职" value="1" />
                <el-option label="自动离职" value="2" />
                <el-option label="公司劝退" value="3" />
                <el-option label="公司辞退" value="4" />
                <el-option label="试用期内" value="5" />
                <el-option
                  v-for="dict in dimissionTypeOptions"
                  :key="dict.dicItemCode"
                  :label="dict.dicItemName"
                  :value="dict.dicItemCode"
                />
              </el-select>
            </el-col>
            <el-col :span="3.5">
@@ -1561,15 +1540,15 @@
          </el-row>
          <el-table ref="dimissionLogTable" :data="dimissionLogData" style="width: 100%;height: 70%;">
            <el-table-column type="selection" width="55" />
            <el-table-column prop="newDeptName" label="护卫点" width="180" />
            <el-table-column prop="newJobName" label="岗位" />
            <el-table-column prop="empNumb" label="员工编号" width="180" />
            <el-table-column prop="newDeptName" label="现部门" />
            <el-table-column prop="newJobName" label="现岗位" />
            <el-table-column prop="empName" label="姓名" width="180" />
            <el-table-column prop="entryDate" label="入职日期" />
            <el-table-column prop="dimissionDate" label="离职日期" />
            <el-table-column prop="selfLeaveDay" label="自离天数" />
            <el-table-column prop="reporter" label="报备人" />
            <el-table-column prop="remark" label="备注" />
            <el-table-column prop="reporter" label="报告人" />
            <el-table-column prop="remark" label="备注" width="280" />
          </el-table>
        </div>
        <pagination
@@ -1876,14 +1855,181 @@
            }
          }
        ]
      }
      },
      statusOptions: [],
      empTypeOptions: [],
      nationOptions: [],
      marriageOptions: [],
      educationOptions: [],
      nativePlaceOptions: [],
      archivesStatusOptions: [],
      insuranceTypeOptions: [],
      empCardStatusOptions: [],
      handbookStatusOptions: [],
      ecgOptions: [],
      certificateListOptions: [],
      physicalExamTypeOptions: [],
      contractStatusOptions: [],
      leaveTypeOptions: [],
      insuranceGaersOptions: [],
      applayStatusOptions: [],
      reportStatusOptions: [],
      hospitalizatioFlagOptions: [],
      settleStatusOptions: [],
      arbitrationTypeOptions: [],
      changeTypeOptions: [],
      dimissionTypeOptions: [],
      ageStrOptions: [],
      attendYearOptions: [],
      sexOptions: []
    }
  },
  mounted() {
    this.thisShowIndex = 1
    this.isShow(false, 0)
    this.getDicts('ageStr').then(response => {
      this.ageStrOptions = response.data
    })
    this.getDicts('PLITICAL').then(response => {
      this.statusOptions = response.data
    })
    this.getDicts('attendYear').then(response => {
      this.attendYearOptions = response.data
    })
    this.getDicts('sex').then(response => {
      this.sexOptions = response.data
    })
    this.getDicts('empType').then(response => {
      this.empTypeOptions = response.data
    })
    this.getDicts('NATION').then(response => {
      this.nationOptions = response.data
    })
    this.getDicts('MARRIAGE').then(response => {
      this.marriageOptions = response.data
    })
    this.getDicts('EDUCATION').then(response => {
      this.educationOptions = response.data
    })
    this.getDicts('NATIVEPLACE').then(response => {
      this.nativePlaceOptions = response.data
    })
    this.getDicts('archivesStatus').then(response => {
      this.archivesStatusOptions = response.data
    })
    this.getDicts('INSURANCETYPE').then(response => {
      this.insuranceTypeOptions = response.data
    })
    this.getDicts('empCardStatus').then(response => {
      this.empCardStatusOptions = response.data
    })
    this.getDicts('handbookStatus').then(response => {
      this.handbookStatusOptions = response.data
    })
    this.getDicts('certificateList').then(response => {
      this.certificateListOptions = response.data
    })
    this.getDicts('PHYSICALEXAMTYPE').then(response => {
      this.physicalExamTypeOptions = response.data
    })
    this.getDicts('ECG').then(response => {
      this.ecgOptions = response.data
    })
    this.getDicts('CONTRACTSTATUS').then(response => {
      this.contractStatusOptions = response.data
    })
    this.getDicts('LEAVETYPE').then(response => {
      this.leaveTypeOptions = response.data
    })
    this.getDicts('insuranceGaers').then(response => {
      this.insuranceGaersOptions = response.data
    })
    this.getDicts('applayStatus').then(response => {
      this.applayStatusOptions = response.data
    })
    this.getDicts('reportStatus').then(response => {
      this.reportStatusOptions = response.data
    })
    this.getDicts('hospitalizatioFlag').then(response => {
      this.hospitalizatioFlagOptions = response.data
    })
    this.getDicts('settleStatus').then(response => {
      this.settleStatusOptions = response.data
    })
    this.getDicts('ZCTYPE').then(response => {
      this.arbitrationTypeOptions = response.data
    })
    this.getDicts('changeType').then(response => {
      this.changeTypeOptions = response.data
    })
    this.getDicts('LZTYPE').then(response => {
      this.dimissionTypeOptions = response.data
    })
  },
  methods: {
    typeFormat(row, column) {
      return this.selectDictLabel(this.physicalExamTypeOptions, row.physicalExamType)
    },
    empTypeFormat(row, column) {
      return this.selectDictLabel(this.empTypeOptions, row.empType)
    },
    sexFormat(row, column) {
      return this.selectDictLabel(this.sexOptions, row.sex)
    },
    nationFormat(row, column) {
      return this.selectDictLabel(this.nationOptions, row.nation)
    },
    marriageFormat(row, column) {
      return this.selectDictLabel(this.marriageOptions, row.marriage)
    },
    politicsFormat(row, column) {
      return this.selectDictLabel(this.statusOptions, row.politics)
    },
    nativePlaceFormat(row, column) {
      return this.selectDictLabel(this.nativePlaceOptions, row.nativePlace)
    },
    educationFormat(row, column) {
      return this.selectDictLabel(this.educationOptions, row.education)
    },
    insuranceTypeFormat(row, column) {
      return this.selectDictLabel(this.insuranceTypeOptions, row.insuranceType)
    },
    ecgNameFormat(row, column) {
      return this.selectDictLabel(this.ecgOptions, row.ecg)
    },
    contractStatusFormat(row, column) {
      return this.selectDictLabel(this.contractStatusOptions, row.contractStatus)
    },
    changeTypeFormat(row, column) {
      return this.selectDictLabel(this.changeTypeOptions, row.changeType)
    },
    leaveTypeFormat(row, column) {
      return this.selectDictLabel(this.leaveTypeOptions, row.leaveType)
    },
    dimissionTypeFormat(row, column) {
      return this.selectDictLabel(this.dimissionTypeOptions, row.dimissionType)
    },
    insuranceGaersFormat(row, column) {
      return this.selectDictLabel(this.insuranceGaersOptions, row.insuranceGaers)
    },
    reportStatusFormat(row, column) {
      return this.selectDictLabel(this.reportStatusOptions, row.reportStatus)
    },
    applayStatusFormat(row, column) {
      return this.selectDictLabel(this.applayStatusOptions, row.applayStatus)
    },
    hospitalizatioFlagFormat(row, column) {
      return this.selectDictLabel(this.hospitalizatioFlagOptions, row.hospitalizatioFlag)
    },
    settleStatusFormat(row, column) {
      return this.selectDictLabel(this.settleStatusOptions, row.settleStatus)
    },
    arbitrationTypeFormat(row, column) {
      return this.selectDictLabel(this.arbitrationTypeOptions, row.arbitrationType)
    },
    arbitrationStatusFormat(row, column) {
      return this.selectDictLabel(this.settleStatusOptions, row.arbitrationStatus)
    },
    handleCheckedCitiesChange(value) {
      const checkedCount = value.length
      this.checkAll = checkedCount === this.cityOptions.length