mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-04-29 12:43:25 +08:00
feat: 优化bbs前端样式
This commit is contained in:
31
Yi.Bbs.Vue3/src/views/bank/Index.vue
Normal file
31
Yi.Bbs.Vue3/src/views/bank/Index.vue
Normal 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>
|
||||
Reference in New Issue
Block a user