wl
2022-11-30 f4c324b44aadc4d8a44d4c67c588d2f76261ccaa
fix:消息分页 视频查询 图片查询
3个文件已修改
22 ■■■■■ 已修改文件
src/views/operate/images/index.vue 9 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/operate/message/myIndex/index.vue 3 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/operate/video/index.vue 10 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/operate/images/index.vue
@@ -322,11 +322,12 @@
    },
    // 更改违规/违建
    changeTypeChecked(idx) {
      this.typeList.forEach((item) => {
        item.checked = item.value === idx;
      });
      if(idx==1){
        this.size="03";
      }else{
        this.size=null;
      }
      this.mystatus = idx + 1;
      this.size = idx;
      this.getImageResourceList();
    },
    // 设置表格斑马纹
src/views/operate/message/myIndex/index.vue
@@ -248,9 +248,10 @@
            endTime: this.datetime ? this.datetime[1] : null
          }
          getMessageList(messageParam)
              .then(({ records, total }) => {
              .then(({ records, total ,size}) => {
                this.tableData = records;
                this.totalNum = total;
                this.pageSize=size;
              })
              .catch(err => {
                this.$message({ type: 'error', message: err });
src/views/operate/video/index.vue
@@ -295,11 +295,13 @@
    },
    // 更改违规/违建
    changeTypeChecked(idx) {
      this.typeList.forEach((item, index) => {
        item.checked = index === idx;
      });
      if(idx==1){
        this.searchContent="03";
      }else{
        this.searchContent=null;
      }
      this.mystatus = idx + 1;
      this.statusArr[1] = this.typeList[idx].value;
      this.searchVideoList();
    },
    // 设置表格斑马纹
    tableRowClassName({ row, rowIndex }) {