feat: sosososs

This commit is contained in:
wangqiao
2025-09-27 20:36:51 +08:00
parent d995ac2b37
commit 82b6f4d63b
2 changed files with 64 additions and 2 deletions

View File

@ -10,11 +10,12 @@
<div class="balance-amount">{{ userStaticInfo?.currencyCount || 0 }}</div>
<div class="balance-actions">
<el-button type="primary" @click="handlePay">充值</el-button>
<el-button>提现</el-button>
<el-button type="danger" @click="handleWithdraw">提现</el-button>
<el-button>兑换</el-button>
</div>
<div class="balance-tip">提示最低提现金额100 一元=10金币</div>
</div>
<el-divider direction="vertical" class="h-100%! mx-30px!" border-style="dashed"></el-divider>
<!-- <el-divider direction="vertical" class="h-100%! mx-30px!" border-style="dashed"></el-divider> -->
<div>
<div class="balance-title">
<span>我的收益</span>
@ -56,8 +57,14 @@
</div> -->
</div>
</div>
<!-- 提示 -->
<div class="color-red pa-10px text-13px">
温馨提示交易未到账紧急联系客服,金币为虚拟积分不支持退款,但支持高额手续费提现抵制恶性充值提现操作金币使用没有时间限制,平台作品交易仅供学习参考,用于商业用途请与原作者联系!
</div>
<!-- 充值弹窗 -->
<Pay v-if="payVisible" v-model="payVisible" @refresh="fetchUserStatistics"></Pay>
<!-- 提现弹窗 -->
<Withdraw v-if="withdrawVisible" v-model="withdrawVisible"></Withdraw>
</div>
</template>
@ -84,6 +91,12 @@
payVisible.value = true
// router.push({ path: '/personal/trading/center' })
}
const withdrawVisible = ref(false)
const handleWithdraw = () => {
withdrawVisible.value = true
// router.push({ path: '/personal/trading/center' })
}
</script>
<style scoped>