zhanbo.xu

fix:修改导出的BUG

......@@ -752,7 +752,7 @@ export default {
console.log("res====", res);
if (res.code == 200) {
console.log("port===", res.data?.port?.split(","));
if (res.data?.port?.split(",").length == 2) {
if (res.data?.port?.split(",").length > 1) {
this.templateDownloadVisible = true;
} else {
this.fileDownload
......@@ -821,7 +821,7 @@ export default {
console.log("res====", res);
if (res.code == 200) {
console.log("port===", res.data?.port?.split(","));
if (res.data?.port?.split(",").length == 2) {
if (res.data?.port?.split(",").length > 1) {
this.datasExportVisible = true;
} else {
this.datasDownload(res.data?.port);
......