Merge branch 'insp'

This commit is contained in:
xyc 2025-09-11 13:27:19 +08:00
commit 92d829c9e8
2 changed files with 7 additions and 4 deletions

View File

@ -56,6 +56,7 @@
<tr>
<th>车型</th>
<th>数量</th>
<th>占比</th>
</tr>
</thead>
<tbody>
@ -65,6 +66,7 @@
>
<td>{{ item.goodsTitle }}</td>
<td>{{ item.totalCount }}</td>
<td>{{ item.percentage }}%</td>
</tr>
</tbody>
</table>
@ -159,6 +161,7 @@
@click="selectGoodsTitle(item.goodsTitle)"
>
<div class="num_">{{ item.totalCount }}</div>
<div class="num_">{{ item.percentage }}%</div>
<div class="size_">{{ item.goodsTitle }}</div>
</div>
</div>

View File

@ -48,7 +48,7 @@
<tr>
<th>排名</th>
<th>姓名</th>
<th>服务</th>
<th>服务</th>
<th>参与项目</th>
</tr>
</thead>
@ -59,7 +59,7 @@
<td>{{ item.totalCount }}</td>
<td>
<div v-for="(project, i) in item.children" :key="i" style="margin-bottom: 2px;">
{{ project.projectName }} ({{ project.count }})
{{ project.projectName }} ({{ project.count }} | {{ project.percentage }}%)
</div>
</td>
</tr>
@ -84,7 +84,7 @@
</template>
</el-table-column>
<el-table-column prop="nickname" label="姓名" width="150" />
<el-table-column prop="totalCount" label="服务" width="120" />
<el-table-column prop="totalCount" label="服务次" width="120" />
<el-table-column label="参与项目">
<template slot-scope="scope">
<el-tag
@ -93,7 +93,7 @@
type="info"
style="margin-right: 4px; margin-bottom: 4px"
>
{{ item.projectName }} ({{ item.count }})
{{ item.projectName }} ({{ item.count }} | {{ item.percentage }}%)
</el-tag>
</template>
</el-table-column>