修复一处页面bug

This commit is contained in:
TOP糯米 2023-03-26 17:30:46 +08:00
parent 0e92d51498
commit 6bb45997c1
1 changed files with 2 additions and 2 deletions

View File

@ -192,8 +192,8 @@ export default {
// });
},
setServiceState(state) {
this.$models.user.setServiceState().then(() => {
this.$store.dispatch("user/info", true);
this.$models.user.setServiceState().then(async () => {
await this.$store.dispatch("user/info", true);
this.acceptState = this.acceptOrder;
});
},