| | |
| | | <el-button type="primary" @click="searchVideoList">查询</el-button> |
| | | </div> |
| | | <div class="findBtn"> |
| | | <el-button type="primary" @click="handleOpera(null, 'create')">添加视频</el-button> |
| | | <el-button class="button-addition" type="primary" @click="handleOpera(null, 'create')">添加视频</el-button> |
| | | </div> |
| | | </div> |
| | | </div> |
| | |
| | | </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"> |
| | |
| | | <!-- 查看修改页面 --> |
| | | <el-dialog |
| | | :visible.sync="isShowDialog" |
| | | :destroy-on-close="true" |
| | | :key="dialogTitle" |
| | | width="40%" |
| | | :title="dialogTitle"> |
| | | <updateInterface :isUpdate="isUpdate" :dialogData="dialogData" /> |
| | | <updateInterface v-if="isShowDialog" :isUpdate="isUpdate" :dialogData="dialogData" @closeDialog="closeDialog" /> |
| | | </el-dialog> |
| | | |
| | | <div class="tools"> |
| | |
| | | // 关闭上传界面 |
| | | closeDialog() { |
| | | this.isShowDialog = false; |
| | | }, |
| | | // 处理时间 |
| | | filterTime(time) { |
| | | return helper(time); |
| | | this.searchVideoList(); |
| | | }, |
| | | |
| | | getCategory(value) { |
| | |
| | | margin-bottom: 10px; |
| | | |
| | | .type-item { |
| | | width: 80px; |
| | | min-width: 80px; |
| | | text-align: center; |
| | | padding-right: 10px; |
| | | |
| | | &:hover { |
| | | cursor: pointer; |