| | |
| | | <el-table-column prop="date" label="流程操作" align="center"> |
| | | <template slot-scope="scope"> |
| | | <el-button @click="handleClick(scope.row)" type="text" size="small">不存在</el-button> |
| | | <el-button @click="handleClick(scope.row)" type="text" size="small">存在</el-button> |
| | | <el-button @click="handleClick(scope.row,'存在')" type="text" size="small">存在</el-button> |
| | | </template> |
| | | </el-table-column> |
| | | </el-table> |
| | |
| | | this.$router.push({ |
| | | path:'/manage' |
| | | }) |
| | | }, |
| | | handleClick(data,val){ |
| | | if(val=='存在'){ |
| | | this.$router.push({ |
| | | path:'/exist' |
| | | }) |
| | | } |
| | | } |
| | | } |
| | | } |