diff --git a/src/api/mes/workScheduling/index.ts b/src/api/mes/workScheduling/index.ts
index 33f7ee0..885f3d5 100644
--- a/src/api/mes/workScheduling/index.ts
+++ b/src/api/mes/workScheduling/index.ts
@@ -121,10 +121,24 @@ export function getNodePosition(params) {
return http.get('/mes/workScheduling/getNodePosition', {params})
}
// 完工查询人员
-export function getCurrentWorkerList(params) {
+export function getWorkerList(params) {
return http.get('/mes/workScheduling/getCurrentWorkerList', {params})
}
export function getRequestMainDetail(params) {
return http.get('/mes/item-request-detail/page', {params})
}
+
+//工序报工
+export function reportByProcess(data) {
+ return http.post('/mes/work-scheduling-detail/reportWorkByProcess', data)
+}
+//工序完工
+export function finishedByProcess(data) {
+ return http.post('/mes/work-scheduling-detail/processFinished', data)
+}
+//工序质检
+export function qualityByProcess(data) {
+ return http.post('/mes/work-scheduling-detail/processQualified', data)
+}
+
diff --git a/src/pages.json b/src/pages.json
index c3f4b73..c1e461c 100644
--- a/src/pages.json
+++ b/src/pages.json
@@ -2079,6 +2079,20 @@
"navigationBarTitleText": "配料详情",
"enablePullDownRefresh": true
}
+ },
+ {
+ "path": "pages/mes/workScheduling/waitQuality",
+ "style": {
+ "navigationBarTitleText": "待质检",
+ "enablePullDownRefresh": true
+ }
+ },
+ {
+ "path": "pages/mes/workScheduling/waitReport",
+ "style": {
+ "navigationBarTitleText": "待报工",
+ "enablePullDownRefresh": true
+ }
}
diff --git a/src/pages/mes/productBackline/createProductBackline.vue b/src/pages/mes/productBackline/createProductBackline.vue
index efd171c..e970149 100644
--- a/src/pages/mes/productBackline/createProductBackline.vue
+++ b/src/pages/mes/productBackline/createProductBackline.vue
@@ -48,7 +48,8 @@
-
+
+
@@ -62,10 +63,15 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/pages/mes/workScheduling/waitReport.vue b/src/pages/mes/workScheduling/waitReport.vue
new file mode 100644
index 0000000..6e55fb2
--- /dev/null
+++ b/src/pages/mes/workScheduling/waitReport.vue
@@ -0,0 +1,384 @@
+
+
+
+
+
+ 当前工序:{{saveData.processCode}}
+
+
+
+
+ 报工人员:
+
+
+
+ 报工数量:
+
+
+
+ 报工工时:
+
+
+
+ 是否质检:
+
+
+
+
+
+ 合格数量:
+
+
+
+ 不合格数量:
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/pages/mes/workScheduling/workScheduling.vue b/src/pages/mes/workScheduling/workScheduling.vue
index b307d45..71fa2a0 100644
--- a/src/pages/mes/workScheduling/workScheduling.vue
+++ b/src/pages/mes/workScheduling/workScheduling.vue
@@ -1,537 +1,598 @@
-
-
-
-
-
-
-
-
-
-
-
-
- 计划号:{{ item.planDayCode }}
-
-
-
- 产品号:{{ item.productCode }}
-
-
- 工序号:{{ item.processCode }}
-
-
- 工位号:{{ item.workstationCode }}
-
-
- 创建时间:{{`${$time.formatDate(item.createTime)}`}}
-
-
- 领料
-
-
-
-
-
-
-
- 计划号:{{ item.planMasterCode }}
-
-
- 产品号:{{ item.productCode }}
-
-
- 工序号:{{ item.workingNode }}
+
+
+
+
+
+ 计划号:{{ item.planDayCode }}
+
+
+
+ 产品号:
+ {{ item.productCode }}
+
+
+ 工序号:
+ {{ item.processCode }}
+
+
+ 工位号:
+ {{ item.workstationCode }}
+
+
+ 创建时间:
+ {{`${$time.formatDate(item.createTime)}`}}
+
+
+ 领料
+
+
+
+
+
+
+
+ 计划号:
+ {{ item.planMasterCode }}
+
+
+ 产品号:
+ {{ item.productCode }}
+
+
+ 工序号:
+ {{ item.workingNode }}
+
+
+ 工位号:
+ {{ item.currentWorkstation }}
+
+
+ 创建时间:
+ {{`${$time.formatDate(item.createTime)}`}}
+
+
+ 状态:
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 步骤
+ 编码
+ 操作
+
+
+ {{ detailIndex + 1 }}
+ {{ detail.nodeCode }}
+
+ 待完成
+
+
+ 待报工
+
+
+ 待质检
+
+
+ 待执行
+
+
+ 已完成
+
+
+ 已报工
+
+
+
+
+
+
+
+
+ 齐套检查
+ 开工
+ SOP
+ 叫料
+ 补料
+
+ 完工
+ 离线
+
+
+
+
+
-
- 工位号:{{ item.currentWorkstation }}
-
-
- 创建时间:{{`${$time.formatDate(item.createTime)}`}}
-
-
- 状态:
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- {{ item.workingNode }}
- 完成
-
-
-
-
-
- 齐套检查
- 开工
- SOP
- 明细
- 叫料
- 补料
- 报工
- 完工
-
-
-
-
-
-
-
-
+
+
\ No newline at end of file