feat: 优化bbs前端样式

This commit is contained in:
橙子
2024-03-03 15:58:19 +08:00
parent e0f8ac1eea
commit aa5d3b9d90
6 changed files with 99 additions and 3 deletions

View File

@@ -0,0 +1,31 @@
<template>
<div class="bank-body">
<h2>小心谨慎选择银行机构确保资金安全</h2>
<div>
<ExchangeRate/>
</div>
<el-divider />
<div>
<el-row :gutter="20">
<el-col :span=8 v-for="i in 10">
<BankCard ></BankCard>
</el-col>
</el-row>
</div>
</div>
</template>
<script setup>
import BankCard from "./components/BankCard.vue"
import ExchangeRate from "./components/ExchangeRate.vue"
</script>
<style scoped lang="scss">
.bank-body
{
padding: 10px;
}
h2{
text-align: center;
}
</style>