feige
2023-12-05 d80a5794d029c8a5fe58a80464ab0e1ae097c87c
ruoyi-ui/src/views/contacts/index.vue
@@ -416,7 +416,9 @@
      // 日期范围
      dateRange: [],
      // 数据范围选项
      fot:[".jpg",".jif"],
      fot:['.bmp','.jpg','.jpeg','.png','.tif','.gif','.pcx','.tga','.exif','.fpx',
        '.svg','.psd','.cdr','.pcd','.dxf','.ufo','.eps','.ai','.aw','.WMF','.webp','.apng'],
      fileList:[
      ],
      fileListOther:[
@@ -570,15 +572,22 @@
    /** 查询通讯录列表 */
    getList() {
      this.loading = true;
      let _this = this
      // console.log(this.queryParams)
      //  listProperty(this.addDateRange(this.queryParams, this.dateRange)).then(response => {
      getContactList(this.queryParams).then(response => {
          //  alert(123)
          //   console.log(response.data)
          this.contactList = response.data.data;
         if(response.msg=="您没加入到对应的家庭,请联系管理员")
         {
             _this.$modal.msgSuccess("您没加入到对应的家庭,请联系管理员");
             _this.loading = false;
         }else{
          _this.contactList = response.data.data;
          this.total = response.data.total;
          this.loading = false;
          _this.total = response.data.total;
          _this.loading = false;
          }
        }
      );
    },