| | |
| | | <el-form ref="form" :model="listQuery" label-width="80px"> |
| | | <el-row> |
| | | <el-col :span="5"> |
| | | <el-form-item label="自查任务"> |
| | | <el-form-item label="任务名称"> |
| | | <el-input v-model="listQuery.filter.inspectionName"></el-input> |
| | | </el-form-item> |
| | | </el-col> |
| | |
| | | </el-row> |
| | | </el-form> |
| | | <el-table :data="list" border style="width: 100%"> |
| | | <el-table-column align="center" prop="inspectionName" label="自查任务"> |
| | | <el-table-column align="center" prop="inspectionName" label="任务名称"> |
| | | </el-table-column> |
| | | <el-table-column align="center" prop="createTime" label="检查时间"> |
| | | </el-table-column> |
| | |
| | | <el-button v-if="scope.row.status==2" @click="handleClick(scope.row)" type="text" size="small" |
| | | >查看</el-button |
| | | > |
| | | <el-button @click="Del(scope.row.id)" v-if="scope.row.status==0?true:false" type="text" size="small" style="color: red" |
| | | <el-button @click="Del(scope.row.id)" type="text" size="small" style="color: red" |
| | | >删除</el-button |
| | | > |
| | | </template> |
| | |
| | | id:val.id |
| | | } |
| | | }) |
| | | }else if(val.status==2){ |
| | | this.$router.push({ |
| | | path:"/gojudging", |
| | | query:{ |
| | | id:val.id, |
| | | type:2 |
| | | } |
| | | }) |
| | | } |
| | | }, |
| | | find() { |