Skip to content

Commit

Permalink
fix:  修复评价选择错误后重新选择的时候提交按钮不刷新的问题 --bug=131427363
Browse files Browse the repository at this point in the history
# Reviewed, transaction id: 19994
  • Loading branch information
luofann committed Oct 9, 2024
1 parent 24fb97b commit a11a98a
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -250,11 +250,11 @@
});
})
.catch((res) => {
this.$emit('updatePendingStatus', false);
errorHandler(res, this);
})
.finally(() => {
this.scoreInfo.clickSecond = false;
this.$emit('updatePendingStatus', false);
});
},
openSendPhone() {
Expand Down Expand Up @@ -346,11 +346,11 @@
this.$emit('submitSuccess');
})
.catch(() => {
this.$emit('updatePendingStatus', false);
errorHandler(this);
})
.finally(() => {
this.scoreInfo.clickSecond = false;
this.$emit('updatePendingStatus', false);
});
},
},
Expand Down

0 comments on commit a11a98a

Please sign in to comment.