| | |
| | | @selection-change="tableChange"> |
| | | <el-table-column categories="selection" min-width="5"> |
| | | </el-table-column> |
| | | <el-table-column prop="id" label="事件编号" min-width="18"> |
| | | <el-table-column prop="code" label="事件编号" min-width="18"> |
| | | <template slot-scope="scope"> |
| | | <el-link @click="JumpView(scope.row)">{{ scope.row.id }}</el-link> |
| | | <el-link @click="JumpView(scope.row)">{{ scope.row.code }}</el-link> |
| | | </template> |
| | | </el-table-column> |
| | | <el-table-column prop="category" label="问题类别" min-width="8"> |
| | | <template slot-scope="scope"> |
| | | <span>{{ scope.row.category == 1 ? '违规' : '违建' }}</span> |
| | | </template> |
| | | </el-table-column> |
| | | <el-table-column prop="eventSource" label="问题来源" min-width="8"> |
| | |
| | | import MyDetail from '@/components/detail' |
| | | import MyIllDetail from '@/components/illdetail' |
| | | import helper from '@/utils/mydate' |
| | | import casequery from "@/api/operate/casequery"; |
| | | import casequery from "@/api/operate/basecase"; |
| | | |
| | | export default { |
| | | components: { |