Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
bdc
/
bdcjg-web
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
e6bc245e
authored
2023-03-09 09:24:58 +0800
by
赵千
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
统计接口
1 parent
a928ac25
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
41 additions
and
0 deletions
src/api/statistics.js
src/api/statistics.js
0 → 100644
View file @
e6bc245
import
request
from
'@/utils/request'
import
SERVER
from
'./config'
/**
* dataReceiveQuality
* @param startDate
* @param endDate
* @returns {AxiosPromise}
*/
export
function
dataReceiveQuality
(
startDate
,
endDate
)
{
return
request
({
url
:
SERVER
.
SERVERAPI
+
'/rest/statistics/Efficient/dataReceiveQuality?startDate='
+
startDate
+
'&endDate='
+
endDate
,
method
:
'post'
})
}
/**
* 空项率统计
* @returns {AxiosPromise}
* @param startDate
* @param endDate
*/
export
function
nonNullSta
(
startDate
,
endDate
)
{
return
request
({
url
:
SERVER
.
SERVERAPI
+
'/rest/statistics/Efficient/nonNullSta?startDate='
+
startDate
+
'&endDate='
+
endDate
,
method
:
'post'
})
}
/**
* 登簿质量统计
* @returns {AxiosPromise}
* @param startDate
* @param endDate
*/
export
function
registerBookQuality
(
startDate
,
endDate
)
{
return
request
({
url
:
SERVER
.
SERVERAPI
+
'/rest/statistics/Efficient/registerBookQuality?startDate='
+
startDate
+
'&endDate='
+
endDate
,
method
:
'post'
})
}
Please
register
or
sign in
to post a comment