@@ -659,7 +659,16 @@ export default {
this.$toast.success('提交成功');
this.rejectReasonShow = false;
this.getDetail();
- this.onClickLeft();
+ this.$dialog
+ .confirm({
+ title: '系统提示',
+ message: '提交成功',
+ showCancelButton: false,
+ })
+ .then(() => {
+ this.wx.closeWindow();
+ });
+ // this.onClickLeft();
} else {
this.$toast.fail(res.msg);
}