Commit 9b08e032 by 黑潮

fix: 修复bug

parent 573d6124
......@@ -383,13 +383,16 @@ export default {
};
if(!isAgree) {
params.refuseReason = this.refuseDialog.form.reason;
this.$refs.refuseForm.validate(valid => {
this.$refs.refuseForm.validate( async(valid) => {
if(valid) {
handleRefundOrder(params);
await handleRefundOrder(params);
this.refuseDialog.visible = false;
this.getList();
}
});
} else {
handleRefundOrder(params);
this.getList();
}
},
handleChangeRefundFlag() {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment