Toggle navigation
Toggle navigation
This project
Loading...
Sign in
fe
/
yohobuy-node
·
Commits
Go to a project
GitLab
Go to group
Project
Activity
Files
Commits
Pipelines
0
Builds
0
Graphs
Milestones
Issues
1
Merge Requests
0
Members
Labels
Wiki
Forks
Network
Create a new issue
Download as
Email Patches
Plain Diff
Browse Files
Authored by
htoooth
2017-08-23 11:09:49 +0800
Commit
19d1a5410213d5db865ae931ed8f9a5d44f96913
1 parent
834f5a8b
fix
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
apps/product/models/coupon-service.js
apps/product/models/detail-comment-service.js
apps/product/models/coupon-service.js
View file @
19d1a54
...
...
@@ -15,7 +15,7 @@ module.exports = class extends global.yoho.BaseModel {
this
.
api
=
new
CouponApi
(
ctx
);
this
.
listAsync
=
this
.
api
.
listAsync
.
bind
(
this
);
this
.
listAsync
=
this
.
api
.
listAsync
.
bind
(
this
.
api
);
}
acquireAsync
(
cid
,
uid
)
{
...
...
apps/product/models/detail-comment-service.js
View file @
19d1a54
...
...
@@ -13,6 +13,6 @@ module.exports = class extends global.yoho.BaseModel {
this
.
api
=
new
Api
(
ctx
);
this
.
getShareOrderListAsync
=
this
.
api
.
getShareOrderListAsync
.
bind
(
this
);
this
.
getShareOrderListAsync
=
this
.
api
.
getShareOrderListAsync
.
bind
(
this
.
api
);
}
};
...
...
Please
register
or
login
to post a comment