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

38 lines
797 B
Vue
Raw Normal View History

2025-08-20 10:28:23 +08:00
<template>
2025-08-21 14:18:21 +08:00
<div class="leftPage">
<!-- -->
<div class="kpi_box">
<TitleComponent :title="'支付KPI'"/>
<div style="height: 100px;"></div>
<ProgressComponent
title="营业收入"
value="123,456.78"
percentageChange="+25.30%"
progressPercentage="75"
progressColor="rgba(0, 227, 150, 1)"
/>
</div>
</div>
2025-08-20 10:28:23 +08:00
</template>
2025-08-21 14:18:21 +08:00
<script setup>
import { ref, reactive, onMounted, computed, toRefs, getCurrentInstance, nextTick } from 'vue';
import TitleComponent from './TitleComponent.vue';
import ProgressComponent from './ProgressComponent.vue';
</script>
2025-08-20 10:28:23 +08:00
2025-08-21 14:18:21 +08:00
<style lang="scss">
2025-08-20 10:28:23 +08:00
.leftPage {
width: 100%;
height: 100%;
background: #0c1e35;
2025-08-21 14:18:21 +08:00
.kpi_box {
padding: 10px;
box-sizing: border-box;
}
2025-08-20 10:28:23 +08:00
}
</style>