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

This commit is contained in:
woody 2025-09-04 10:56:21 +08:00
parent 2060717fc5
commit 8a9d19bf9f
1 changed files with 4 additions and 5 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>
@ -252,12 +252,11 @@ export default {
bal.addWithdraw(this.dataForm).then(res => { bal.addWithdraw(this.dataForm).then(res => {
if (res.code == 200) { if (res.code == 200) {
this.$refs.uToast.show({ this.$refs.uToast.show({
message: res.msg, message: res.msg || '提现成功',
type: 'success', type: 'success',
}) })
//
setTimeout(() => { setTimeout(() => {
this.showWithdrawalGuide = true uni.navigateBack()
}, 300) }, 300)
} }
}) })