heyujie
2021-07-01 5044b402981f42542eece201e1308b5c2816737a
src/pages/shuohuangMonitorAnalyze/components/searchForVideoAnalyze.vue
@@ -167,8 +167,8 @@
              @change="filterSearchData"
            >
              <el-option value label="全部"></el-option>
              <el-option :value="false" label="未关注"></el-option>
              <el-option :value="true" label="已关注"></el-option>
              <el-option :value="'1'" label="未关注"></el-option>
              <el-option :value="'0'" label="已关注"></el-option>
            </el-select>
          </div>
          <div>
@@ -560,7 +560,7 @@
        PageSize:
          this.showType == "list" ? this.tablePageSize : this.tabPageSize,
        IsDetail: this.showType == "list",
        IsFollow: this.IsFollow ? "0" : "1",
        IsFollow: this.IsFollow ,
        IsOperate: this.IsOperate,
      };
      let filterQuerys = [];
@@ -575,6 +575,7 @@
        }
      });
      Object.assign(query, ...filterQuerys);
      debugger;
      getlst(query).then((res) => {
        if (_this.showType == "list") {
@@ -615,6 +616,7 @@
        IsFollow: this.IsFollow,
        IsOperate: this.IsOperate,
      };
      debugger;
      let filterQuerys = [];
      this.checkedConfigs.forEach((config) => {
        let checkedOpts = config.data.filter((option) => option.isChecked);
@@ -697,6 +699,7 @@
    },
    toggleFollow(data) {
      data.IsFollow == "0" ? (data.IsFollow = "1") : (data.IsFollow = "0");
      debugger
      updateFollow({
        id: data.id,
        IsFollow: data.IsFollow,