| | |
| | | <el-table-column prop="empName" label="姓名" width="180" /> |
| | | <el-table-column prop="certificateNumb" label="身份证号码" width="180" /> |
| | | <el-table-column prop="arbitrationDate" label="仲裁日期" width="180" /> |
| | | <el-table-column prop="arbitrationType" label="仲裁类型" width="180" /> |
| | | <el-table-column prop="arbitrationType" label="仲裁类型"> |
| | | <template scope="scope"> |
| | | {{ scope.row.arbitrationType === '01' ? '劳资纠纷': '' }} |
| | | {{ scope.row.arbitrationType === '02' ? '民事纠纷': '' }} |
| | | {{ scope.row.arbitrationType === '03' ? '合同纠纷': '' }} |
| | | </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" /> |
| | | <el-table-column prop="arbitrationStatus" label="状态"> |
| | | <template scope="scope"> |
| | | {{ scope.row.arbitrationStatus === 0 ? '未结案': '' }} |
| | | {{ scope.row.arbitrationStatus === 1 ? '已结案': '' }} |
| | | </template> |
| | | </el-table-column> |
| | | <el-table-column prop="settleDate" label="案结日期" width="180" /> |
| | | </el-table> |
| | | <pagination |