let allListTypesAreThree = true;
let otherListTypesFound = false;
multipleSelection.map((item) => {
this.selectData.push(item.fileguid);
this.createtime = item.createtime;
this.dataString = this.selectData.join(",");
if (item.listType !== "3") {
allListTypesAreThree = false;
if (!otherListTypesFound) {
otherListTypesFound = true;
}
}
});
if (!allListTypesAreThree) {
if (otherListTypesFound) {
this.$message.error(`仅支持评委工作资料打包下载 !`);
}
}