|  |  | 
 |  |  |       <el-table-column prop="driverName" label="最后更新时间" min-width="100" show-overflow-tooltip /> | 
 |  |  |       <el-table-column prop="name" label="操作" min-width="120" align="center" fixed="right" show-overflow-tooltip> | 
 |  |  |         <template v-slot="scope"> | 
 |  |  |           <el-button v-if="scope.row.status == '12'" type="text" class="red" v-permissions="['business:platformjob:delete']" | 
 |  |  |             @click="handleDel(scope.row)">删除</el-button> | 
 |  |  |           <el-button v-if="scope.row.status == '12'" type="text" class="red" | 
 |  |  |             v-permissions="['business:platformjob:delete']" @click="handleDel(scope.row)">删除</el-button> | 
 |  |  |           <el-button v-if="scope.row != 12" type="text" v-permissions="['business:platformjob:query']" | 
 |  |  |             @click="handleDetail(scope.row)">编辑</el-button> | 
 |  |  |         </template> | 
 |  |  | 
 |  |  |       this.pagination.page = 1 | 
 |  |  |       this.filters = { | 
 |  |  |         selDate: [], | 
 |  |  |         fastdate: 0 | 
 |  |  |       } | 
 |  |  |       this.getList() | 
 |  |  |     }, | 
 |  |  | 
 |  |  |     }, | 
 |  |  |     handleSizeChange(capacity) { | 
 |  |  |       this.pagination.pageSize = capacity | 
 |  |  |       this.getList(1) | 
 |  |  |     } | 
 |  |  |   } | 
 |  |  | } |