diff --git a/pages.json b/pages.json
index 2ba7a2c..db83596 100644
--- a/pages.json
+++ b/pages.json
@@ -517,6 +517,13 @@
"navigationStyle": "custom"
}
}
+ ,{
+ "path" : "pages/hdyy/tygn/qfh-confirm",
+ "style" :
+ {
+ "navigationStyle": "custom"
+ }
+ }
,{
"path" : "pages/hdyy/wrcdj/wrc-load",
"style" :
diff --git a/pages/hdyy/scgl/by-xialiao.vue b/pages/hdyy/scgl/by-xialiao.vue
index b3e9683..89a361e 100644
--- a/pages/hdyy/scgl/by-xialiao.vue
+++ b/pages/hdyy/scgl/by-xialiao.vue
@@ -73,8 +73,8 @@
-
-
+
+
diff --git a/pages/hdyy/tygn/agv-manage.vue b/pages/hdyy/tygn/agv-manage.vue
index b7b93fa..b3fc138 100644
--- a/pages/hdyy/tygn/agv-manage.vue
+++ b/pages/hdyy/tygn/agv-manage.vue
@@ -65,7 +65,8 @@
return {
title: '',
val1: '',
- dataList: []
+ dataList: [],
+ disabled: false
};
},
onLoad (options) {
diff --git a/pages/hdyy/tygn/qfh-confirm.vue b/pages/hdyy/tygn/qfh-confirm.vue
new file mode 100644
index 0000000..0f3069f
--- /dev/null
+++ b/pages/hdyy/tygn/qfh-confirm.vue
@@ -0,0 +1,164 @@
+
+
+
+
+
+
+
+
+ 点位
+
+
+
+
+
+
+
+
+
+
+
+ | 序号 |
+ 点位编码 |
+ 点位名称 |
+ 是否取货 |
+ 是否放货 |
+
+
+
+
+ | {{i+1}} |
+ {{e.point_code}} |
+ {{e.point_name}} |
+ {{e.get_status}} |
+ {{e.put_status}} |
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/utils/getData3.js b/utils/getData3.js
index 9ee8c1d..73af7fe 100644
--- a/utils/getData3.js
+++ b/utils/getData3.js
@@ -450,6 +450,30 @@ export const queryIvt = (scode, pcode, mcode, pcsn) => request({
data: {sect_code: scode, point_code: pcode, material_code: mcode, pcsn: pcsn}
})
+// 取放货确认(通用功能)共 (4) 个
+// 扫码查询点位信息
+export const queryPointInfo = (pcode) => request({
+ url:'api/pdaPointAndPoint/queryPointInfo',
+ data: {point_code: pcode}
+})
+// 放货完成
+export const putConfirm = (rows) => request({
+ url:'api/pdaPointAndPoint/putConfirm',
+ data: {rows: rows}
+})
+// 取货完成
+export const getConfirm = (rows) => request({
+ url:'api/pdaPointAndPoint/getConfirm',
+ data: {rows: rows}
+})
+// 复位
+export const reduce = (rows) => request({
+ url:'api/pdaPointAndPoint/reduce',
+ data: {rows: rows}
+})
+
+
+
/**
* 无人车
*/
diff --git a/utils/mork02.js b/utils/mork02.js
index e03ff5f..ee13cdf 100644
--- a/utils/mork02.js
+++ b/utils/mork02.js
@@ -61,7 +61,8 @@ export const allAuthority = () => {
{menu_id: '2', title: '作业管理', path: '/pages/hdyy/tygn/work-manage'},
{menu_id: '3', title: '点位更新', path: '/pages/hdyy/tygn/pt-update'},
{menu_id: '4', title: 'AGV管理', path: '/pages/hdyy/tygn/agv-manage'},
- {menu_id: '5', title: '库存查询', path: '/pages/hdyy/tygn/kc-query'}
+ {menu_id: '5', title: '库存查询', path: '/pages/hdyy/tygn/kc-query'},
+ {menu_id: '6', title: '取放货确认', path: '/pages/hdyy/tygn/qfh-confirm'}
]}
]
}