feat(withDrawal): 移除灵活用工弹窗
This commit is contained in:
parent
2060717fc5
commit
8a9d19bf9f
|
@ -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)
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
Loading…
Reference in New Issue