更新0911

This commit is contained in:
xyc 2025-09-11 13:22:47 +08:00
parent 3dbdb77399
commit 0870222ad0
2 changed files with 7 additions and 4 deletions

View File

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

View File

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