更新代码

This commit is contained in:
2025-04-17 11:19:14 +08:00
parent 644c03a3ea
commit 7b6f305d23
12 changed files with 1486 additions and 455 deletions

View File

@ -66,7 +66,7 @@
<span>线索类型统计</span>
<el-button type="primary">导出统计表</el-button>
</div>
<ul class="chart">
<ul class="chart mt8">
<li v-for="(it, idx) in obj.jjList" :key="idx" class="mb6">
<div style="color: #333">{{ it.label }}</div>
<el-progress
@ -226,10 +226,12 @@ onMounted(() => {});
background-color: #fff;
border-radius: 8px;
padding: 20px;
box-sizing: border-box;
overflow: hidden;
overflow-y: auto;
.chart-title {
font-size: 16px;
font-weight: bold;
margin-bottom: 16px;
color: #333;
display: flex;
justify-content: space-between;
@ -237,6 +239,8 @@ onMounted(() => {});
}
.chart {
height: calc(100% - 40px);
overflow: hidden;
overflow-y: auto;
}
}
}