Files
Yi.Admin/Yi.Bbs.Vue3/src/views/bank/Index.vue
2024-03-03 15:58:19 +08:00

31 lines
588 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="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>