| | |
| | | </el-table-column> |
| | | <el-table-column prop="baseId" label="所属事件编号" min-width="18"> |
| | | </el-table-column> |
| | | <el-table-column prop="category" label="问题类型" min-width="8"> |
| | | <el-table-column prop="category" label="问题类别" min-width="8"> |
| | | <template slot-scope="scope"> |
| | | <span>{{ getCategory(scope.row.category).label }}</span> |
| | | </template> |
| | | </el-table-column> |
| | | <el-table-column prop="eventSource" label="大类名称" min-width="8"> |
| | | <el-table-column prop="eventSource" label="事件来源" min-width="8"> |
| | | <template slot-scope="scope"> |
| | | <span>{{ getEventSource(scope.row.eventSource).label }}</span> |
| | | </template> |
| | | </el-table-column> |
| | | <el-table-column prop="regionName" label="小类名称" min-width="8"> |
| | | <el-table-column prop="regionName" label="社区名称" min-width="8"> |
| | | </el-table-column> |
| | | <el-table-column prop="id" label="图片Id" min-width="8"> |
| | | </el-table-column> |
| | |
| | | <script> |
| | | import updateUser from "./updateUser"; |
| | | import imageManagement from "@/api/operate/imageManagement"; |
| | | import { CATEGOTY, EVENT_SOURCE } from "@/utils/helper"; |
| | | |
| | | export default { |
| | | components: { updateUser }, |
| | |
| | | }, |
| | | |
| | | data() { |
| | | return { |
| | | return { |
| | | isShowUploadDialog:false, |
| | | dialogType: 'create', |
| | | originalData: null, |
| | |
| | | caseId: '', |
| | | caseCode: null, |
| | | dialogAdd: false, |
| | | datePicked: null |
| | | datePicked: null, |
| | | } |
| | | }, |
| | | created() { |
| | |
| | | |
| | | closeDialog() { |
| | | this.isShowUploadDialog = false; |
| | | } |
| | | }, |
| | | |
| | | getCategory(value) { |
| | | return CATEGOTY.find(item => item.value === value); |
| | | }, |
| | | |
| | | getEventSource(value) { |
| | | return EVENT_SOURCE.find(item => item.value === value); |
| | | } |
| | | } |
| | | } |
| | | </script> |