Files
td_official/src/views/largeScreen/components/rightPage.vue

32 lines
550 B
Vue
Raw Normal View History

2025-08-20 10:28:23 +08:00
<template>
2025-08-21 14:17:57 +08:00
<div class="rightPage">
<div class="funds">
<div class="fundsTitle">资金情况</div>
<div class="funds_"></div>
</div>
</div>
2025-08-20 10:28:23 +08:00
</template>
<script setup lang="ts"></script>
<style scoped lang="scss">
.rightPage {
width: 100%;
height: 100%;
background: #0c1e35;
}
2025-08-21 14:17:57 +08:00
.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;
}
}
2025-08-20 10:28:23 +08:00
</style>