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
a1aee7bf
authored
2023-02-01 14:46:03 +0800
by
任超
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
feat:api文件整理
1 parent
800ba85e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
36 deletions
src/api/journal.js
src/api/journal.js
deleted
100644 → 0
View file @
800ba85
import
request
from
'@/utils/request'
import
SERVER
from
'./config'
class
journal
{
// 重新抽取
async
extractionAndInsertData
(
id
)
{
return
request
({
url
:
SERVER
.
SERVERAPI
+
'/sjsbFunctionOper/extractionAndInsertData'
,
method
:
'get'
,
params
:
{
msgid
:
id
}
})
}
// 错误日志查询
async
queryErrorLog
(
id
)
{
return
request
({
url
:
SERVER
.
SERVERAPI
+
'/sjsbFunctionOper/queryErrorLog'
,
method
:
'get'
,
params
:
{
msgid
:
id
}
})
}
// 校验报文
async
checkSjsbXmlDatas
(
id
)
{
return
request
({
url
:
SERVER
.
SERVERAPI
+
'/sjsbFunctionOper/checkSjsbXmlDatas'
,
method
:
'get'
,
params
:
{
msgid
:
id
}
})
}
}
export
default
new
journal
()
\ No newline at end of file
Please
register
or
sign in
to post a comment