feat:完善功能

This commit is contained in:
zjc
2025-01-20 04:09:56 +08:00
parent 46c737fb93
commit 65244492b4
40 changed files with 2303 additions and 797 deletions

View File

@@ -25,10 +25,6 @@
<div class="chart">
<div class="chart__wrapper mr-8">
<Title3 title="工单总数" />
<!-- <div class="check-label">
<span class="active">全部</span>
<span>已完成总数</span>
</div> -->
<Line :width="680" :height="320" :data="seriesData" :xAxisData="xAxisData" />
</div>
<div class="chart__wrapper">
@@ -77,7 +73,7 @@
<div class="chart__wrapper">
<Title3 title="景区工单占比" />
<div class="chart__inner">
<spotRate :dataList="spotRateData" :total="spotRateTotal" />
<spotRate :dataList="spotRateData" :total="spotRateTotal" label="工单总数" />
<ul class="chart__legend">
<li class="chart__legend-item" v-for="(item, index) in spotRateData" :key="index">
<p class="dot" :style="{ background: colors[index] }" />
@@ -90,7 +86,7 @@
<div class="chart__wrapper">
<Title3 title="景区工单类型占比" />
<div class="chart__inner">
<spotRate :dataList="typeRateData" :total="typeRateTotal" />
<spotRate :dataList="typeRateData" :total="typeRateTotal" label="工单总数" />
<ul class="chart__legend">
<li class="chart__legend-item" v-for="(item, index) in typeRateData" :key="index">
<p class="dot" :style="{ background: colors[index] }" />
@@ -373,8 +369,8 @@
}
.dot {
width: vw(4);
height: vw(4);
width: vw(10);
height: vw(10);
margin: 0 vw(16);
}