Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Z
zhichan
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
蒋勇
zhichan
Commits
403bbdda
Commit
403bbdda
authored
Apr 27, 2020
by
王昆
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gsb
parent
6675a4c5
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
18 additions
and
3 deletions
+18
-3
xgg-web/app/base/api/impl/testApi.js
+17
-2
xgg-web/app/base/service/impl/bmorderSve.js
+1
-1
No files found.
xgg-web/app/base/api/impl/testApi.js
View file @
403bbdda
...
...
@@ -5,8 +5,22 @@ class TestApi {
}
async
testBankfour
(
obj
)
{
let
rs
=
await
this
.
bmorderSve
.
bankfour
(
1868
);
return
rs
;
let
ids
=
obj
.
ids
;
let
result
=
[];
if
(
!
ids
)
{
return
result
;
}
for
(
let
id
of
ids
)
{
try
{
let
rs
=
await
this
.
bmorderSve
.
bankfour
(
id
);
result
.
push
({
id
:
id
,
rs
:
rs
});
}
catch
(
e
)
{
console
.
log
(
e
.
stack
);
result
.
push
({
id
:
id
,
msg
:
e
.
message
})
}
}
return
result
;
}
}
module
.
exports
=
TestApi
;
\ No newline at end of file
xgg-web/app/base/service/impl/bmorderSve.js
View file @
403bbdda
...
...
@@ -47,7 +47,7 @@ class BmorderService extends ServiceBase {
userBankNo
:
biz
.
bankno
,
userMobile
:
biz
.
legal_mobile
,
nonceStr
:
nonceStr
,
}
}
;
// 签名
var
signArr
=
[];
...
...
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