Toggle navigation
Toggle navigation
This project
Loading...
Sign in
Fedex
/
EcomWeb
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
zhanbo.xu
2025-03-17 16:59:08 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
7ac2e31fabac32efda28f1d33959aa1d44636985
7ac2e31f
1 parent
9e183ca0
fix:修改导出的BUG
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
src/views/reportingData/index.vue
src/views/reportingData/index.vue
View file @
7ac2e31
...
...
@@ -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);
...
...
Please
register
or
login
to post a comment