This commit is contained in:
ljx
2025-08-21 14:17:57 +08:00
parent 6dff42a6cb
commit 59325f7877

View File

@ -1,5 +1,10 @@
<template> <template>
<div class="rightPage">右边</div> <div class="rightPage">
<div class="funds">
<div class="fundsTitle">资金情况</div>
<div class="funds_"></div>
</div>
</div>
</template> </template>
<script setup lang="ts"></script> <script setup lang="ts"></script>
@ -10,4 +15,17 @@
height: 100%; height: 100%;
background: #0c1e35; background: #0c1e35;
} }
.funds {
width: 100%;
height: 40%;
border: 1px solid rgba(29, 214, 255, 0.3);
box-sizing: border-box;
padding: 5px;
.fundsTitle {
width: 100%;
height: 15%;
font-size: 16px;
background-color: #1dd6ff;
}
}
</style> </style>