| | |
| | | </el-table-column> |
| | | <el-table-column prop="category" label="问题类别" min-width="8"> |
| | | <template slot-scope="scope"> |
| | | <span>{{ getCategory(scope.row.category).label }}</span> |
| | | <span>{{ getCategory(scope.row.category)?.label }}</span> |
| | | </template> |
| | | </el-table-column> |
| | | <el-table-column prop="eventSource" label="事件来源" min-width="8"> |
| | | <template slot-scope="scope"> |
| | | <span>{{ getEventSource(scope.row.eventSource).label }}</span> |
| | | <span>{{ getEventSource(scope.row.eventSource)?.label }}</span> |
| | | </template> |
| | | </el-table-column> |
| | | <el-table-column prop="regionName" label="社区名称" min-width="8"> |
| | |
| | | :visible.sync="isShowDialog" |
| | | width="40%" |
| | | :title="dialogTitle"> |
| | | <updateInterface :isUpdate="isUpdate" :dialogData="dialogData" /> |
| | | <updateInterface :isUpdate="isUpdate" :dialogData="dialogData" @closeDialog="closeDialog" /> |
| | | </el-dialog> |
| | | |
| | | <div class="tools"> |
| | |
| | | // 关闭上传界面 |
| | | closeDialog() { |
| | | this.isShowDialog = false; |
| | | }, |
| | | // 处理时间 |
| | | filterTime(time) { |
| | | return helper(time); |
| | | this.searchVideoList(); |
| | | }, |
| | | |
| | | getCategory(value) { |