jeecgboot系统无法下载多个文件

jeecgboot平台上传多个文件,但是点击下载只能下载一个文件

img

源代码如下:

    downloadFile(text){
      if(!text){
        this.$message.warning("未知的文件")
        return;
      }
      if(text.indexOf(",")>0){
        text = text.substring(0,text.indexOf(","))
      }
      let url = getFileAccessHttpUrl(text)
      window.open(url);
    },

for循环遍历window.open