Toggle navigation
Toggle navigation
This project
Loading...
Sign in
fe
/
yohobuywap-node
·
Commits
Go to a project
GitLab
Go to group
Project
Activity
Files
Commits
Pipelines
0
Builds
0
Graphs
Milestones
Issues
0
Merge Requests
0
Members
Labels
Wiki
Forks
Network
Create a new issue
Download as
Plain Diff
Browse Files
Authored by
郭成尧
2016-08-19 15:30:31 +0800
Commit
4cfd697c43cac1a764f78ed9e6b61380d1836120
2 parents
2bcdcec9
d087f369
Merge branch 'feature/usercenter' of git.yoho.cn:fe/yohobuywap-node into feature/usercenter
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
21 additions
and
0 deletions
apps/home/models/orderDetail.js
apps/home/models/orderDetail.js
View file @
4cfd697
'use strict'
;
const
api
=
global
.
yoho
.
API
;
const
_
=
require
(
'lodash'
);
const
orderDetail
=
(
params
)
=>
{
let
finalResult
=
{};
return
api
.
get
(
''
,
_
.
assign
({
method
:
'app.SpaceOrders.closeReasons'
},
params
),
{
code
:
200
}).
then
((
result
)
=>
{
return
finalResult
;
});
};
module
.
exports
=
{
orderDetail
};
...
...
Please
register
or
login
to post a comment