Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
V
V3-TailingPond
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
xinzhedeai
V3-TailingPond
Commits
83ad68ff
Commit
83ad68ff
authored
Mar 13, 2025
by
xinzhedeai
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add: 降雨量日月年累计雨量导出功能
parent
25557f84
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
68 additions
and
1 deletion
+68
-1
settings.js
config/settings.js
+1
-1
httpApi.js
src/assets/js/httpApi.js
+67
-0
No files found.
config/settings.js
View file @
83ad68ff
var
ServiceURL
=
'
http://192.168.
3.216
:9002
'
;
var
ServiceURL
=
'
http://192.168.
0.230
:9002
'
;
window
.
VUE_APP_API
=
{
ServiceURL
:
ServiceURL
}
src/assets/js/httpApi.js
View file @
83ad68ff
...
...
@@ -1256,6 +1256,72 @@ var reqApis = function () {
reqApi
.
common
.
toExports
.
call
(
this
);
}
},
{
type
:
'
default
'
,
icon
:
'
el-icon-document
'
,
name
:
'
日累计降雨量导出
'
,
'
callback
'
:
function
()
{
// reqApi.common.toExports.call(this);
this
.
$confirm
(
'
您确认要导出该页数据吗?
'
,
'
提示
'
,
{
confirmButtonText
:
'
确定
'
,
cancelButtonText
:
'
取消
'
,
type
:
'
warning
'
}).
then
((
e
)
=>
{
var
loading
=
this
.
$loading
({
lock
:
true
,
text
:
'
请稍后.....
'
,
spinner
:
'
el-icon-loading
'
,
background
:
'
rgba(0, 0, 0, 0.7)
'
});
reqPublic
(
'
/data/rg/downloadDvalue
'
,
'
get
'
,
{},
{
responseType
:
'
blob
'
}).
then
((
res
)
=>
{
loading
.
close
();
var
name
=
'
日累计降雨量数据
'
+
Tools
.
Dates
.
format
(
'
yyyy-MM-dd HH:mm:ss
'
);
Tools
.
downloadFile
(
res
,
name
,
'
xlsx
'
)
})
})
}
},
{
type
:
'
default
'
,
icon
:
'
el-icon-document
'
,
name
:
'
月累计降雨量导出
'
,
'
callback
'
:
function
()
{
// reqApi.common.toExports.call(this);
this
.
$confirm
(
'
您确认要导出该页数据吗?
'
,
'
提示
'
,
{
confirmButtonText
:
'
确定
'
,
cancelButtonText
:
'
取消
'
,
type
:
'
warning
'
}).
then
((
e
)
=>
{
var
loading
=
this
.
$loading
({
lock
:
true
,
text
:
'
请稍后.....
'
,
spinner
:
'
el-icon-loading
'
,
background
:
'
rgba(0, 0, 0, 0.7)
'
});
reqPublic
(
'
/data/rg/downloadMvalue
'
,
'
get
'
,
{},
{
responseType
:
'
blob
'
}).
then
((
res
)
=>
{
loading
.
close
();
var
name
=
'
月累计降雨量数据
'
+
Tools
.
Dates
.
format
(
'
yyyy-MM-dd HH:mm:ss
'
);
Tools
.
downloadFile
(
res
,
name
,
'
xlsx
'
)
})
})
}
},
{
type
:
'
default
'
,
icon
:
'
el-icon-document
'
,
name
:
'
年累计降雨量导出
'
,
'
callback
'
:
function
()
{
// reqApi.common.toExports.call(this);
this
.
$confirm
(
'
您确认要导出该页数据吗?
'
,
'
提示
'
,
{
confirmButtonText
:
'
确定
'
,
cancelButtonText
:
'
取消
'
,
type
:
'
warning
'
}).
then
((
e
)
=>
{
var
loading
=
this
.
$loading
({
lock
:
true
,
text
:
'
请稍后.....
'
,
spinner
:
'
el-icon-loading
'
,
background
:
'
rgba(0, 0, 0, 0.7)
'
});
reqPublic
(
'
/data/rg/downloadYvalue
'
,
'
get
'
,
{},
{
responseType
:
'
blob
'
}).
then
((
res
)
=>
{
loading
.
close
();
var
name
=
'
年累计降雨量数据
'
+
Tools
.
Dates
.
format
(
'
yyyy-MM-dd HH:mm:ss
'
);
Tools
.
downloadFile
(
res
,
name
,
'
xlsx
'
)
})
})
}
},
{
type
:
'
default
'
,
icon
:
'
el-icon-printer
'
,
name
:
'
打印
'
,
'
callback
'
:
function
()
{
Tools
.
cuPrint
(
this
.
$refs
.
cuTable
);
...
...
@@ -1310,6 +1376,7 @@ var reqApis = function () {
download
:
function
(
param
)
{
return
reqPublic
(
'
data/rg/download
'
,
'
get
'
,
param
,
{
responseType
:
'
blob
'
})
},
},
},
nbwy
:
{
// 内部位移
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment