isexcel(file) {
      const isXlS =
        file.type ===
          "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet" ||
        file.type === "application/vnd.ms-excel";
      //   const isLt2M = file.size / 1024 / 1024 < 2;
      if (!isXlS) {
        this.$message.error("仅支持xls、xlsx格式的文件!");
      }
      //   if (!isLt2M) {
      //     this.$message.error("上传头像图片大小不能超过 2MB!");
      //   }
      this.filename = file.name;
      return isXlS;
    },

Logo

前往低代码交流专区

更多推荐