feat(withDrawal): 移除灵活用工弹窗

This commit is contained in:
woody 2025-09-04 10:56:21 +08:00
parent 7dac4daa72
commit 601439f3e6
1 changed files with 4 additions and 5 deletions

View File

@ -136,10 +136,10 @@
<u-toast ref="uToast"></u-toast>
<!-- 提现引导弹窗 -->
<WithdrawalGuide
<!-- <WithdrawalGuide
:show="showWithdrawalGuide"
@confirm="onWithdrawalGuideConfirm"
/>
/> -->
</view>
</template>
@ -252,12 +252,11 @@ export default {
bal.addWithdraw(this.dataForm).then(res => {
if (res.code == 200) {
this.$refs.uToast.show({
message: res.msg,
message: res.msg || '提现成功',
type: 'success',
})
//
setTimeout(() => {
this.showWithdrawalGuide = true
uni.navigateBack()
}, 300)
}
})