diff --git a/src/views/kanbanManagement/CarouselBoard/components/QualityStatisticsCard.vue b/src/views/kanbanManagement/CarouselBoard/components/QualityStatisticsCard.vue index 8269b01..fc7a86b 100644 --- a/src/views/kanbanManagement/CarouselBoard/components/QualityStatisticsCard.vue +++ b/src/views/kanbanManagement/CarouselBoard/components/QualityStatisticsCard.vue @@ -68,7 +68,10 @@ style="flex: 3" >
| 抛光总数 | 打磨总数 | -报废总数 | +不合格品总数 | 开始时间 | 结束时间 | @@ -109,7 +112,12 @@{{ row.workorderId || "-" }} | {{ row.finishedPartNumber || "-" }} | {{ row.color || "-" }} | -{{ row.productDescription || "-" }} | ++ {{ row.productDescription || "-" }} + | {{ row.team || "-" }} | {{ row.requireNumber || "-" }} | {{ row.qualifiedNumber || "-" }} | @@ -163,6 +171,8 @@ import { getQualityStatisticsCarouselBoardData } from "@/api/kanbanManagement/ca import * as echarts from "echarts"; import kbHeader from "./kbHeader.vue"; import dayjs from "dayjs"; +import isoWeek from "dayjs/plugin/isoWeek"; +dayjs.locale("en", { weekStart: 1 }); import vueSeamlessScroll from "vue-seamless-scroll"; export default { @@ -323,11 +333,6 @@ export default { // 计算统计数据 this.calculateStatistics(); - - // 数据加载完成后立即启动滚动 - this.$nextTick(() => { - this.startTableAutoScroll(); - }); } }) .finally(() => {
|---|