feat: sosososs
This commit is contained in:
@ -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>
|
||||
|
||||
Reference in New Issue
Block a user