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
沈志敏
9 years ago
Commit
5893508f14225c52abf8c07d3e6ff03c649c7517
1 parent
2a9f5cfb
fix bug
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
5 deletions
public/js/yoho.js
public/vue/me/order-detail.vue
public/vue/me/order.vue
public/js/yoho.js
View file @
5893508
...
...
@@ -364,4 +364,4 @@ const yoho = {
}
};
module
.
exports
=
yoho
;
\ No newline at end of file
module
.
exports
=
yoho
;
...
...
public/vue/me/order-detail.vue
View file @
5893508
...
...
@@ -195,7 +195,7 @@
this.options.unshift({
id: 0,
reason: '请选择'
})
})
;
}
}
}).fail(() => {
...
...
@@ -303,7 +303,7 @@
orderid: order.orderCode,
amount: order.amount,
orderDesc: orderDesc.join(','),
type:
"orderDetail"
type:
'orderDetail'
}, () => {
this.reload();
yoho.store.set('orderReload', true);
...
...
public/vue/me/order.vue
View file @
5893508
...
...
@@ -170,7 +170,7 @@
this.options.unshift({
id: 0,
reason: '请选择'
})
})
;
}
}
}).fail(() => {
...
...
@@ -280,7 +280,7 @@
orderid: order.orderCode,
amount: order.amount,
orderDesc: orderDesc.join(','),
type:
"orderList"
type:
'orderList'
}, () => {
this.reload();
});
...
...
Please
register
or
login
to post a comment