From bda065e4be320ca2e9331fd56d434fed0a469607 Mon Sep 17 00:00:00 2001
From: juzi <819872918@qq.com>
Date: Tue, 23 Apr 2024 09:11:14 +0800
Subject: [PATCH] =?UTF-8?q?=E6=8A=A5=E8=A1=A8?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.env.dev | 1 +
src/api/report/customizedReports.js | 45 ++
.../orderCompletionMonitoring/index.vue | 4 +-
.../Environmental/sectionProduction/index.vue | 437 ++++++++++++++++++
.../report/qcReport/israLineReport/index.vue | 338 ++++++++++++++
5 files changed, 823 insertions(+), 2 deletions(-)
create mode 100644 src/api/report/customizedReports.js
create mode 100644 src/views/report/Environmental/sectionProduction/index.vue
create mode 100644 src/views/report/qcReport/israLineReport/index.vue
diff --git a/.env.dev b/.env.dev
index 72036ff0..2937f1fa 100644
--- a/.env.dev
+++ b/.env.dev
@@ -13,6 +13,7 @@ VUE_APP_TITLE = MES系统
# 芋道管理系统/开发环境
VUE_APP_BASE_API = 'http://192.168.0.33:48082'
+# VUE_APP_BASE_API = 'http://192.168.1.20:48080'
# 积木报表指向地址
VUE_APP_JIMU_API = 'http://192.168.0.33:48082'
diff --git a/src/api/report/customizedReports.js b/src/api/report/customizedReports.js
new file mode 100644
index 00000000..b8fc3a0c
--- /dev/null
+++ b/src/api/report/customizedReports.js
@@ -0,0 +1,45 @@
+import request from '@/utils/request'
+// 原片工段数据
+export function originalSection(data) {
+ return request({
+ url: '/extend/customized-reports/originalSection',
+ method: 'post',
+ data: data
+ })
+}
+
+// 原片产线数据
+export function getOriginalLine(query) {
+ return request({
+ url: '/extend/customized-reports/getOriginalLine',
+ method: 'get',
+ params: query
+ })
+}
+
+// 深加工产线数据
+export function getProcessingLine(query) {
+ return request({
+ url: '/extend/customized-reports/getProcessingLine',
+ method: 'get',
+ params: query
+ })
+}
+
+// 深加工工段数据
+export function processing(data) {
+ return request({
+ url: '/extend/customized-reports/processing',
+ method: 'post',
+ data: data
+ })
+}
+
+// isra数据记录
+export function israData(data) {
+ return request({
+ url: '/extend/customized-reports/isra',
+ method: 'post',
+ data: data
+ })
+}
\ No newline at end of file
diff --git a/src/views/order/monitoring/orderCompletionMonitoring/index.vue b/src/views/order/monitoring/orderCompletionMonitoring/index.vue
index 35215ff6..885500ef 100644
--- a/src/views/order/monitoring/orderCompletionMonitoring/index.vue
+++ b/src/views/order/monitoring/orderCompletionMonitoring/index.vue
@@ -376,7 +376,7 @@ export default {
},
};
-
\ No newline at end of file
+
diff --git a/src/views/report/Environmental/sectionProduction/index.vue b/src/views/report/Environmental/sectionProduction/index.vue
new file mode 100644
index 00000000..009fabe1
--- /dev/null
+++ b/src/views/report/Environmental/sectionProduction/index.vue
@@ -0,0 +1,437 @@
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/report/qcReport/israLineReport/index.vue b/src/views/report/qcReport/israLineReport/index.vue
new file mode 100644
index 00000000..76271d58
--- /dev/null
+++ b/src/views/report/qcReport/israLineReport/index.vue
@@ -0,0 +1,338 @@
+
+
+
+
+
+
+
+
+