Compare commits

..

No commits in common. "f1f9356cd4f33e1402b5e96b8cb498512999f269" and "2158a2acd35c3ba4cde3366e4cfc32a7c590e92d" have entirely different histories.

1 changed files with 4 additions and 3 deletions

View File

@ -136,10 +136,10 @@
<u-toast ref="uToast"></u-toast> <u-toast ref="uToast"></u-toast>
<!-- 提现引导弹窗 --> <!-- 提现引导弹窗 -->
<!-- <WithdrawalGuide <WithdrawalGuide
:show="showWithdrawalGuide" :show="showWithdrawalGuide"
@confirm="onWithdrawalGuideConfirm" @confirm="onWithdrawalGuideConfirm"
/> --> />
</view> </view>
</template> </template>
@ -257,7 +257,7 @@ export default {
}) })
// //
setTimeout(() => { setTimeout(() => {
uni.navigateBack() this.showWithdrawalGuide = true
}, 300) }, 300)
} }
}) })
@ -292,6 +292,7 @@ export default {
// //
onWithdrawalGuideConfirm() { onWithdrawalGuideConfirm() {
this.showWithdrawalGuide = false this.showWithdrawalGuide = false
uni.navigateBack()
}, },
}, },
} }