|
@@ -179,11 +179,11 @@ export default defineComponent({
|
|
|
// 默认关闭支付二维码弹窗
|
|
|
state.showQrcode = false
|
|
|
clearInterval(orderTimer)
|
|
|
- window.location.replace(
|
|
|
- window.location.origin +
|
|
|
- '/orchestra-student/#/payment-result?orderNo=' +
|
|
|
- state.orderNo
|
|
|
- )
|
|
|
+ setTimeout(() => {
|
|
|
+ window.location.replace(
|
|
|
+ window.location.origin + '/#/payment-result?orderNo=' + state.orderNo
|
|
|
+ )
|
|
|
+ }, 100)
|
|
|
}
|
|
|
} catch {
|
|
|
//
|