Commit 92e37884 authored by qd01's avatar qd01

1

parent fe4d3713
......@@ -72,14 +72,19 @@ function handleClick1(type) {
function gotx(balance, type, title) {
if (balance && balance > 0) {
if (userData.value.extend2 != 7) {
showFailToast('请先申请化债/扶贫')
setTimeout(() => {
navigateTo('/sqhz')
}, 2000)
if (type == 6 || type == 2) {
navigateTo(`/user/tixian?balance=${balance}&type=${type}&title=${title}`)
}
else {
navigateTo(`/user/tixian?balance=${balance}&type=${type}&title=${title}`)
if (userData.value.extend2 != 7) {
showFailToast('请先申请化债/扶贫')
setTimeout(() => {
navigateTo('/sqhz')
}, 2000)
}
else {
navigateTo(`/user/tixian?balance=${balance}&type=${type}&title=${title}`)
}
}
}
else {
......
......@@ -394,6 +394,9 @@ getUserInfo()
提现
</var-button>
</div>
<var-button class="btn1 btn" style="color: #fff;" size="large" block @click="navigateTo('/user/withdraw?tab=4')">
提现记录
</var-button>
</div>
</div>
</div>
......
......@@ -24,6 +24,7 @@ const emptyTipsShow = ref(false)
const range = ref([
{ text: '生活补贴', value: 1 },
{ text: '产品收益', value: 2 },
{ text: '化债专用卡', value: 4 },
])
// 获取路由参数中的tab
......@@ -107,6 +108,9 @@ function handleClick(item) {
<div v-if="item.walletType == 2" class="title">
产品收益
</div>
<div v-if="item.walletType == 4" class="title">
化债专用卡
</div>
<div class="price">
+{{ item.withdrawAmount }}
</div>
......@@ -130,7 +134,7 @@ function handleClick(item) {
待打款
</div>
<div v-if="item.status == 1" class="title">
资金校对中
{{ item.walletType != 4 ? '资金校对中' : '排队打款中' }}
</div>
<div v-if="item.status == 2" class="title success">
已到账,请查收
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment