32 lines
550 B
Vue
32 lines
550 B
Vue
<template>
|
|
<div class="rightPage">
|
|
<div class="funds">
|
|
<div class="fundsTitle">资金情况</div>
|
|
<div class="funds_"></div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts"></script>
|
|
|
|
<style scoped lang="scss">
|
|
.rightPage {
|
|
width: 100%;
|
|
height: 100%;
|
|
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>
|