| | |
| | | > |
| | | <el-table-column type="selection" width="50"> </el-table-column> |
| | | <el-table-column type="index" label="序号" width="60"> |
| | | <template scope="scope"> |
| | | <template slot-scope="scope"> |
| | | {{ (search.pageSize - 1) * search.countSize + scope.$index + 1 }} |
| | | </template> |
| | | </el-table-column> |
| | |
| | | </el-table-column> |
| | | <el-table-column prop="deal_reasult" label="处理结果" width="100"> |
| | | <template slot-scope="scope"> |
| | | <span style="color:#34BD66;" v-if="scope.row.deal_reasult == 1" |
| | | <span style="color:#E84738;" v-if="scope.row.deal_reasult == 0" |
| | | >不通过</span |
| | | > |
| | | <span |
| | | style="color:#E84738;" |
| | | v-else-if="scope.row.deal_reasult == 0" |
| | | style="color:#34BD66;" |
| | | v-else-if="scope.row.deal_reasult == 1" |
| | | >通过</span |
| | | > |
| | | </template> |