Toggle navigation
Toggle navigation
This project
Loading...
Sign in
fe
/
xianyu-ufo-app-web
·
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
邱骏
5 years ago
Commit
28d1f0b2b70853150b0614e1a60f50b5fd1e0de0
2 parents
b30b9e60
db41a2e8
Merge branch 'develop' of
http://git.yoho.cn/fe/xianyu-ufo-app-web
into develop
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
1 deletions
apps/pages/order/seller-confirm.vue
apps/pages/order/seller-confirm.vue
View file @
28d1f0b
...
...
@@ -177,6 +177,8 @@ export default {
type: 'txt'
}).show();
await this.delay(1500);
this.$router.replace({
name: 'ProductDetail',
params: {
...
...
@@ -221,7 +223,12 @@ export default {
},
onNumChange(count) {
this[Types.CHANGE_SELL_NUM](count);
}
},
delay(ns) {
return new Promise(resolve => {
setTimeout(resolve, ns);
});
},
}
};
</script>
...
...
Please
register
or
login
to post a comment