Toggle navigation
Toggle navigation
This project
Loading...
Sign in
fe
/
yohoblk-wap
·
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
郝肖肖
9 years ago
Commit
57f0d5c035da1348068cc64a004df01c2adb1dbe
2 parents
e3584220
6b095a4f
Merge branch 'feature/brand' into develop
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
2 deletions
URL.md
apps/me/controllers/order.js
apps/me/models/order.js
URL.md
View file @
57f0d5c
...
...
@@ -32,7 +32,7 @@ yoho币 | /me/mycurrency |
意见反馈 | /me/feedback |
关于我们 | /me/about |
物流详情 | /me/logistic?order_code=1609827614 |
退换货物流详情| /me/logistic?order_code=1609827614&
type=refund|
退换货物流详情| /me/logistic?order_code=1609827614&
id=3&type=refund|change
--------------------------------------------------------------------------------
### order 常亮
...
...
apps/me/controllers/order.js
View file @
57f0d5c
...
...
@@ -149,7 +149,8 @@ const order = {
orderModel
.
getOrderLogisticdate
({
uid
:
req
.
user
.
uid
||
''
,
type
:
req
.
query
.
type
||
''
,
order_code
:
req
.
query
.
orderCode
order_code
:
req
.
query
.
orderCode
,
id
:
req
.
query
.
id
}).
then
(
result
=>
{
res
.
json
(
result
);
});
...
...
apps/me/models/order.js
View file @
57f0d5c
...
...
@@ -92,6 +92,7 @@ exports.deleteOrder = (orderCode, uid) => {
* @param {[int]} order_code 订单号
* @param {[int]} uid 用户uid
* @param {[string]} type 退换货物流(退货:refund,换货:change)
* @param {[int]} id 退换货申请ID(type为refund | change,才有效)
* @return {[array]}
*/
exports
.
getOrderLogisticdate
=
(
params
)
=>
{
...
...
Please
register
or
login
to post a comment