| | |
| | | <el-table-column prop="applayDate" label="社保申请日期" width="180" /> |
| | | <el-table-column prop="proposer" label="申请人" width="180" /> |
| | | <el-table-column prop="insuranceGaers" label="社保档位"> |
| | | <template scope="scope"> |
| | | <template slot-scope="scope"> |
| | | {{ scope.row.insuranceGaers === '1' ? '深户(五险一档)': '' }} |
| | | {{ scope.row.insuranceGaers === '2' ? '非深户(五险一档)': '' }} |
| | | {{ scope.row.insuranceGaers === '3' ? '非深户(五险二档)': '' }} |
| | |
| | | </template> |
| | | </el-table-column> |
| | | <el-table-column prop="reportStatus" label="是否已报告"> |
| | | <template scope="scope"> |
| | | <template slot-scope="scope"> |
| | | {{ scope.row.reportStatus === 1 ? '未报告': '' }} |
| | | {{ scope.row.reportStatus === 2 ? '已报告': '' }} |
| | | </template> |
| | | </el-table-column> |
| | | <el-table-column prop="applayStatus" label="状态"> |
| | | <template scope="scope"> |
| | | <template slot-scope="scope"> |
| | | {{ scope.row.applayStatus === 1 ? '未申请': '' }} |
| | | {{ scope.row.applayStatus === 2 ? '已申请': '' }} |
| | | </template> |