luobisheng
2022-11-16 22b61836c8f6f169c506cc7529f75f2c89f66bc1
src/views/operate/video/index.vue
@@ -62,12 +62,12 @@
          </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">
@@ -98,7 +98,7 @@
          :visible.sync="isShowDialog"
          width="40%"
          :title="dialogTitle">
          <updateInterface :isUpdate="isUpdate" :dialogData="dialogData" />
          <updateInterface :isUpdate="isUpdate" :dialogData="dialogData" @closeDialog="closeDialog" />
        </el-dialog>
        <div class="tools">
@@ -340,10 +340,7 @@
    // 关闭上传界面
    closeDialog() {
      this.isShowDialog = false;
    },
    // 处理时间
    filterTime(time) {
      return helper(time);
      this.searchVideoList();
    },
    getCategory(value) {