From 2a82bb64ebecb3fce92c3da35dd4495089053206 Mon Sep 17 00:00:00 2001 From: yinq Date: Fri, 15 Dec 2023 13:16:37 +0800 Subject: [PATCH 1/4] =?UTF-8?q?update=20-=20=E8=B4=A8=E9=87=8F=E6=8A=A5?= =?UTF-8?q?=E8=A1=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/base/spaceInfo/index.vue | 16 +- .../report/fewerMistakesReport/index.vue | 260 ++++++++++++++++ .../productTraceabilityReport/index.vue | 260 ++++++++++++++++ .../index.vue | 258 ++++++++++++++++ .../report/qualityIssuesReport/index.vue | 258 ++++++++++++++++ .../report/scanOfflineRecordReport/index.vue | 277 ++++++++++++++++++ 6 files changed, 1321 insertions(+), 8 deletions(-) create mode 100644 src/views/report/fewerMistakesReport/index.vue create mode 100644 src/views/report/productTraceabilityReport/index.vue create mode 100644 src/views/report/qualityDefectsStatisticalAnalysisReport/index.vue create mode 100644 src/views/report/qualityIssuesReport/index.vue create mode 100644 src/views/report/scanOfflineRecordReport/index.vue diff --git a/src/views/base/spaceInfo/index.vue b/src/views/base/spaceInfo/index.vue index d556dd8..24028c3 100644 --- a/src/views/base/spaceInfo/index.vue +++ b/src/views/base/spaceInfo/index.vue @@ -148,14 +148,14 @@ v-hasPermi="['base:spaceInfo:edit']" >修改 - 删除 - + + + + + + + + diff --git a/src/views/report/fewerMistakesReport/index.vue b/src/views/report/fewerMistakesReport/index.vue new file mode 100644 index 0000000..0d69276 --- /dev/null +++ b/src/views/report/fewerMistakesReport/index.vue @@ -0,0 +1,260 @@ + + + diff --git a/src/views/report/productTraceabilityReport/index.vue b/src/views/report/productTraceabilityReport/index.vue new file mode 100644 index 0000000..17f45cf --- /dev/null +++ b/src/views/report/productTraceabilityReport/index.vue @@ -0,0 +1,260 @@ + + + diff --git a/src/views/report/qualityDefectsStatisticalAnalysisReport/index.vue b/src/views/report/qualityDefectsStatisticalAnalysisReport/index.vue new file mode 100644 index 0000000..a0b74b2 --- /dev/null +++ b/src/views/report/qualityDefectsStatisticalAnalysisReport/index.vue @@ -0,0 +1,258 @@ + + + diff --git a/src/views/report/qualityIssuesReport/index.vue b/src/views/report/qualityIssuesReport/index.vue new file mode 100644 index 0000000..ea38f8c --- /dev/null +++ b/src/views/report/qualityIssuesReport/index.vue @@ -0,0 +1,258 @@ + + + diff --git a/src/views/report/scanOfflineRecordReport/index.vue b/src/views/report/scanOfflineRecordReport/index.vue new file mode 100644 index 0000000..0142df6 --- /dev/null +++ b/src/views/report/scanOfflineRecordReport/index.vue @@ -0,0 +1,277 @@ + + + From f15cb1654d5b9de787bbe7334f0b8b0c8a5c627b Mon Sep 17 00:00:00 2001 From: yinq Date: Fri, 15 Dec 2023 13:17:06 +0800 Subject: [PATCH 2/4] =?UTF-8?q?update=20-=20=E8=B4=A8=E9=87=8F=E6=8A=A5?= =?UTF-8?q?=E8=A1=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/report/reportAPI.js | 54 +++++++++++++++++++++++++++++++++++++ 1 file changed, 54 insertions(+) diff --git a/src/api/report/reportAPI.js b/src/api/report/reportAPI.js index fe9cfda..e6e0cfd 100644 --- a/src/api/report/reportAPI.js +++ b/src/api/report/reportAPI.js @@ -17,3 +17,57 @@ export function productionExecutionReportList(query) { params: query }) } + +// 查询在制品查询报表 +export function WIPInquiryReportList(query) { + return request({ + url: '/report/productionReport/WIPInquiryReportList', + method: 'get', + params: query + }) +} + +// 扫描下线记录报表 +export function ScanOfflineRecordReportList(query) { + return request({ + url: '/report/productionReport/ScanOfflineRecordReportList', + method: 'get', + params: query + }) +} + +// 质量缺陷统计分析 +export function qualityDefectsStatisticalAnalysisList(query) { + return request({ + url: '/report/qualityReport/qualityDefectsStatisticalAnalysisList', + method: 'get', + params: query + }) +} + +// 少错件报表 +export function fewerMistakesReportList(query) { + return request({ + url: '/report/qualityReport/fewerMistakesReportList', + method: 'get', + params: query + }) +} + +// 质量问题前80报表 +export function qualityIssuesReportList(query) { + return request({ + url: '/report/qualityReport/qualityIssuesReportList', + method: 'get', + params: query + }) +} + +// 产品追溯报表 +export function productTraceabilityReportList(query) { + return request({ + url: '/report/qualityReport/productTraceabilityReportList', + method: 'get', + params: query + }) +} From e96bc2b13a2f3a9cedbf1d6c84aeb96895825697 Mon Sep 17 00:00:00 2001 From: yinq Date: Fri, 15 Dec 2023 21:36:31 +0800 Subject: [PATCH 3/4] =?UTF-8?q?update=20-=20=E9=A6=96=E9=A1=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/report/productionExecutionReport/index.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/report/productionExecutionReport/index.vue b/src/views/report/productionExecutionReport/index.vue index c681815..5bdaca8 100644 --- a/src/views/report/productionExecutionReport/index.vue +++ b/src/views/report/productionExecutionReport/index.vue @@ -95,7 +95,7 @@ 查看订单明细 From 07c69bc3f737b5af7ce8096fe475012e0aa44b9f Mon Sep 17 00:00:00 2001 From: yinq Date: Fri, 15 Dec 2023 21:45:01 +0800 Subject: [PATCH 4/4] =?UTF-8?q?update=20-=20=E9=A6=96=E9=A1=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/dashboard/LineChart.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/dashboard/LineChart.vue b/src/views/dashboard/LineChart.vue index 2bdcf81..331c905 100644 --- a/src/views/dashboard/LineChart.vue +++ b/src/views/dashboard/LineChart.vue @@ -127,7 +127,7 @@ export default { }, series: [ { - name: '订单违约率', + name: '订单履约率', type: 'line', yAxisIndex:1, itemStyle: {