Files
Yi.Framework/Yi.Bbs.Vue3/src/views/bank/components/BankCard.vue
2024-03-12 23:01:10 +08:00

37 lines
912 B
Vue
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<template>
<div class="card">
<div class="card-body">
银行卡-32659854213658541
<p>当前余额100钱钱</p>
<p>状态存款中</p>
<p>剩余定期提款时间还剩: 2天12小时</p>
</div>
<div class="div-oper">
<el-button>存款</el-button><el-button type="danger">提款</el-button>
</div>
</div>
</template>
<style scoped lang="scss">
.card {
height: 140px;
margin: 10px 0;
border-radius: 15px;
box-shadow: rgba(0, 0, 0, 0.2) 0px 4px 8px 0px;
.card-body
{
padding: 5px;
height: 100px;
background-color: #FDC830;
color: #FFFFFF;
border-radius: 15px 15px 0 0;
}
.div-oper {
padding: 5px;
padding-right: 10px;
border-radius:0 0 15px 15px ;
background-color: #FFFFFF;
text-align: end;
height: 40px;
}
}
</style>