打包问题的修复,以及质量模块的合并

This commit is contained in:
2026-03-06 16:45:32 +08:00
parent 956834103e
commit 6d706e8961
10 changed files with 2019 additions and 2 deletions

View File

@@ -3,7 +3,11 @@
<!-- 筛选条件 -->
<div class="mobile-dashboard-filter">
<el-select v-model="queryParams.supplierId" clearable filterable placeholder="选择供应商" @change="getSupplierStats" size="small" style="flex:1">
<el-option v-for="item in supplierList" :key="item.id" :label="item.name" :value="item.id" />
<el-option
v-for="item in supplierList"
:key="item.id"
:label="item.name"
:value="item.id" />
</el-select>
<el-button size="small" @click="getAllSuppliersStats">刷新</el-button>
</div>
@@ -88,7 +92,7 @@
</div>
<div class="mobile-distribution__item">
<div class="mobile-distribution__header">
<span class="mobile-distribution__label">不及格 (<6)</span>
<span class="mobile-distribution__label">不及格 (&lt;6)</span>
<span class="mobile-distribution__count">{{ failCount }} </span>
</div>
<el-progress :percentage="scoreDistribution.fail" color="#f56c6c" :stroke-width="10" />