| | |
| | | <el-table-column prop="lineAmount" label="巡检点数量" min-width="100px"></el-table-column> |
| | | <el-table-column prop="status" label="状态" min-width="100px"> |
| | | <template v-slot="scope"> |
| | | <el-switch v-model="scope.row.status" @change="changeStatus" active-value="0" inactive-value="1"> |
| | | <el-switch v-model="scope.row.status" @change="e => changeStatus(scope.row)" :active-value="0" :inactive-value="1"> |
| | | </el-switch> |
| | | </template> |
| | | </el-table-column> |
| | |
| | | import TableLayout from '@/layouts/TableLayout' |
| | | import Pagination from '@/components/common/Pagination' |
| | | import OperaYwPatrolLineWindow from './components/OperaYwPatrolLineWindow' |
| | | import { updateStatusById } from '@/api/Inspection/ywPatrolLine' |
| | | import { Message } from 'element-ui' |
| | | export default { |
| | | name: 'YwPatrolLine', |
| | | extends: BaseTable, |
| | |
| | | this.search() |
| | | }, |
| | | methods: { |
| | | changeStatus() { |
| | | |
| | | changeStatus(row) { |
| | | updateStatusById({ |
| | | id: row.id, |
| | | status: row.status |
| | | }).then(res => { |
| | | Message.success('更新成功') |
| | | this.search() |
| | | }, () => { |
| | | this.search() |
| | | }) |
| | | }, |
| | | editClick(row) { |
| | | if (row && row.id) { |