Skip to content

Commit

Permalink
Merge pull request #1427 from luofann/fix_10_09
Browse files Browse the repository at this point in the history
fix:  修复评价选择错误后重新选择的时候提交按钮不刷新的问题 --bug=131427363
  • Loading branch information
luofann authored Oct 9, 2024
2 parents 24fb97b + 516fa70 commit 8e5cde5
Showing 1 changed file with 4 additions and 4 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 @@ -345,12 +345,12 @@
});
this.$emit('submitSuccess');
})
.catch(() => {
this.$emit('updatePendingStatus', false);
errorHandler(this);
.catch((res) => {
errorHandler(res, this);
})
.finally(() => {
this.scoreInfo.clickSecond = false;
this.$emit('updatePendingStatus', false);
});
},
},
Expand Down

0 comments on commit 8e5cde5

Please sign in to comment.