| | |
| | | <span>{{scope.$index + 1}}</span> |
| | | </template> |
| | | </el-table-column> |
| | | <el-table-column prop="status" label="案件状态" min-width="100px"> |
| | | <template slot-scope="{row}"> |
| | | <span :class="'settle-status'+row.status" style="color: #2E68EC" v-if="row.status === 0 || row.status === 2 || row.status === 3">处理中</span> |
| | | <span :class="'settle-status'+row.status" style="color: red" v-if="row.status === 1">已撤案</span> |
| | | <span :class="'settle-status'+row.status" style="color: green " v-if="row.status ===4">已结案</span> |
| | | </template> |
| | | </el-table-column> |
| | | <el-table-column prop="reportNum" label="报案号" min-width="100px"></el-table-column> |
| | | <el-table-column prop="companyName" label="报案企业" min-width="100px"></el-table-column> |
| | | <el-table-column prop="memberName" label="出险人" min-width="100px"></el-table-column> |
| | |
| | | <el-table-column prop="worktypeName" label="所属工种" min-width="100px"></el-table-column> |
| | | <el-table-column prop="baoxianStartTime" label="保险生效起期" min-width="100px"></el-table-column> |
| | | <el-table-column prop="createDate" label="报案时间" min-width="100px"></el-table-column> |
| | | <el-table-column prop="status" label="案件状态" min-width="100px"> |
| | | <template slot-scope="{row}"> |
| | | <span style="color: #2E68EC" v-if="row.status === 0 || row.status === 2 || row.status === 3">处理中</span> |
| | | <span style="color: red" v-if="row.status === 1">已撤案</span> |
| | | <span style="color: green " v-if="row.status ===4">已结案</span> |
| | | </template> |
| | | </el-table-column> |
| | | <el-table-column |
| | | v-if="containPermissions(['business:settleclaims:update', 'business:settleclaims:delete'])" |
| | | label="操作" |