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

62 lines
1.5 KiB
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">
2025-08-21 17:34:02 +08:00
<TitleComponent :title="'支付KPI'" style="margin-bottom: 20px;"/>
2025-08-21 14:18:21 +08:00
<ProgressComponent
2025-08-21 17:34:02 +08:00
title="应收账款"
2025-08-21 14:18:21 +08:00
value="123,456.78"
percentageChange="+25.30%"
progressPercentage="75"
2025-08-21 17:34:02 +08:00
progressColor="rgba(255, 77, 79, 1)"
/>
<ProgressComponent
title="应付账款"
value="123,456.78"
percentageChange="+25.30%"
progressPercentage="25"
progressColor="rgba(29, 214, 255, 1)"
/>
<ProgressComponent
title="本月付款"
value="123,456.78"
percentageChange="+25.30%"
progressPercentage="45"
2025-08-21 14:18:21 +08:00
progressColor="rgba(0, 227, 150, 1)"
/>
2025-08-21 17:34:02 +08:00
<ProgressComponent
title="本月收款"
value="123,456.78"
percentageChange="+25.30%"
progressPercentage="10"
progressColor="rgba(255, 147, 42, 1)"
/>
2025-08-21 14:18:21 +08:00
</div>
2025-08-21 17:34:02 +08:00
<div class="contract_box">
2025-08-21 14:18:21 +08:00
2025-08-21 17:34:02 +08:00
</div>
2025-08-21 14:18:21 +08:00
</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';
2025-08-21 17:34:02 +08:00
import echarts from 'echarts';
2025-08-21 14:18:21 +08:00
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%;
2025-08-21 17:34:02 +08:00
.kpi_box{
margin-bottom: 10px;
}
.kpi_box,.contract_box {
2025-08-21 14:18:21 +08:00
padding: 10px;
box-sizing: border-box;
2025-08-21 17:34:02 +08:00
border: 1px solid rgba(29, 214, 255, 0.3);
2025-08-21 14:18:21 +08:00
}
2025-08-20 10:28:23 +08:00
}
</style>