| | |
| | | <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="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" /> |
| | |
| | | placeholder="选择社保申请日期" |
| | | /> |
| | | </el-form-item> |
| | | <el-form-item label="社保档位" prop="insuranceGaers"> |
| | | <el-select v-model="insuranceForm.insuranceGaers" placeholder="请选择社保档位"> |
| | | <el-form-item label="保险类型" prop="insuranceGaers"> |
| | | <el-select v-model="insuranceForm.insuranceGaers" placeholder="请选择保险类型"> |
| | | <el-option |
| | | v-for="dict in insuranceGaersOptions" |
| | | :key="dict.dicItemCode" |
| | |
| | | message: '长度不超过40个字符', |
| | | trigger: 'blur' |
| | | }], |
| | | insuranceGaers: [{ required: true, message: '请选择社保档位', trigger: 'change' }], |
| | | insuranceGaers: [{ required: true, message: '请选择保险类型', trigger: 'change' }], |
| | | auditor: [{ max: 40, message: '长度不超过40个字符', trigger: 'blur' }], |
| | | remark: [{ max: 512, message: '长度不超过512个字符', trigger: 'blur' }], |
| | | applayStatus: [{ required: true, message: '请选择申请状态', trigger: 'change' }] |
| | |
| | | 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 => { |
| | |
| | | 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 |