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
Email Patches
Plain Diff
Browse Files
Authored by
李奇
8 years ago
Commit
10e4846e6c1bfc29bb10ffcdfa2fb72f1f157dcf
1 parent
47fa0799
fixed: 不能取消订单
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
6 additions
and
4 deletions
apps/me/controllers/order.js
apps/me/models/order.js
public/vue/me/cancel-reason.vue
public/vue/me/order-detail.vue
apps/me/controllers/order.js
View file @
10e4846
...
...
@@ -82,8 +82,9 @@ const order = {
const
orderCode
=
req
.
body
.
orderCode
;
const
reasonId
=
req
.
body
.
reasonId
;
const
reason
=
req
.
body
.
reason
;
const
uid
=
req
.
user
.
uid
;
orderModel
.
cancelOrder
(
orderCode
,
reasonId
,
reason
).
then
(
result
=>
{
orderModel
.
cancelOrder
(
uid
,
orderCode
,
reasonId
,
reason
).
then
(
result
=>
{
return
res
.
json
(
result
);
}).
catch
(
next
);
},
...
...
apps/me/models/order.js
View file @
10e4846
...
...
@@ -47,9 +47,10 @@ exports.getOrderDetail = (uid, orderCode) => {
* @param reason 原因描述
* @returns {Promise.<T>|*}
*/
exports
.
cancelOrder
=
(
orderCode
,
reasonId
,
reason
)
=>
{
exports
.
cancelOrder
=
(
uid
,
orderCode
,
reasonId
,
reason
)
=>
{
return
api
.
post
(
''
,
{
method
:
'app.SpaceOrders.close'
,
uid
,
order_code
:
orderCode
,
reason_id
:
reasonId
,
reason
:
reason
?
reason
:
''
...
...
public/vue/me/cancel-reason.vue
View file @
10e4846
...
...
@@ -10,7 +10,7 @@
import $ from 'jquery';
import yoho from 'yoho';
import tip from 'common/tip';
export default {
data() {
return {
...
...
public/vue/me/order-detail.vue
View file @
10e4846
...
...
@@ -53,7 +53,7 @@
<button @click="readdOrder(order)" class="normal">再次购买</button>
</template>
<template v-else>
<button v-if="order.status == 0" @click="cancelOrder
()
">取消订单</button>
<button v-if="order.status == 0" @click="cancelOrder">取消订单</button>
<button v-if="order.status == 0 " class="countdown" @click="goBuy(order)">去支付 <span class="count-down" v-count-down="{leftTime: order.pay_lefttime, callback: autoCancel()}"></span></button>
<a v-if="order.status == 4 || order.status == 5 || order.status == 6" :href="`/me/logistic?order_code=${order.order_code}`">查看物流</a>
<button v-if="order.status == 4 || order.status == 5 " class="black" @click="confirmGoods(order.order_code)">确认收货</button>
...
...
Please
register
or
login
to post a comment