diff --git a/pages.json b/pages.json
index 04d7bf4..7b8823b 100644
--- a/pages.json
+++ b/pages.json
@@ -507,7 +507,14 @@
}
}
,{
- "path" : "pages/zw/zygl",
+ "path" : "pages/zw/zygl-agv",
+ "style" :
+ {
+ "navigationStyle": "custom"
+ }
+ }
+ ,{
+ "path" : "pages/zw/zygl-man",
"style" :
{
"navigationStyle": "custom"
diff --git a/pages/home/home.vue b/pages/home/home.vue
index 890f741..967d09b 100644
--- a/pages/home/home.vue
+++ b/pages/home/home.vue
@@ -45,7 +45,7 @@
{title: '解包管理', path: 'RF03', sonTree: [{title: '解包上料', path: '/pages/zw/jb-up-mater'}, {title: '解包出桶', path: '/pages/zw/jb-lower-mater'}, {title: '解包退料', path: '/pages/zw/jb-return-mater'}, {title: '人车安全', path: '/pages/zw/mancar-safe'}]},
{title: '缓存管理', path: 'RF06', sonTree: [{title: '料桶盘点', path: '/pages/zw/materbox-instore'}, {title: '物料入库', path: '/pages/zw/wlrk'}]},
{title: '产线管理', path: 'RF02', sonTree: [{title: '手工叫料', path: '/pages/zw/manual-callmater'}, {title: '手工退料', path: '/pages/zw/manual-returnmater'}]},
- {title: '作业管理', path: 'RF07', sonTree: [{title: '作业管理', path: '/pages/zw/zygl'}]},
+ {title: '作业管理', path: 'RF07', sonTree: [{title: 'AGV作业管理', path: '/pages/zw/zygl-agv'}, {title: '人工作业管理', path: '/pages/zw/zygl-man'}]},
// {title: '入库管理', path: 'RF01', sonTree: [{title: '物料组盘入库', path: '/pages/entry/mater-group-to-store'}, {title: '合格证入库', path: '/pages/entry/qualified-to-store'}, {title: '单据入库', path: '/pages/entry/bill-to-store'}, {title: '盘点入库', path: '/pages/entry/check-to-store'}, {title: '空托盘入库', path: '/pages/entry/empty-tray-to-store'}]},
// {title: '出库管理', path: 'RF02', sonTree: [{title: '空托盘出库', path: '/pages/outbound/tray-out-store'}, {title: '出库确认', path: '/pages/outbound/out-store-confirm'}, {title: '单据出库', path: '/pages/outbound/bill-list'}, {title: '盘点出库', path: '/pages/outbound/stock-out-store'}, {title: '物料出库', path: '/pages/outbound/mater-outstore'}, {title: '货架绑定', path: '/pages/outbound/shelf-bind'}, {title: '产线转运', path: '/pages/outbound/line-transfer'}, {title: '空载具出库', path: '/pages/outbound/empty-vehicle-outstore'}, {title: 'CTU载具出库', path: '/pages/outbound/ctu-vehicle-outstore'}]},
diff --git a/pages/zw/zygl.vue b/pages/zw/zygl-agv.vue
similarity index 73%
rename from pages/zw/zygl.vue
rename to pages/zw/zygl-agv.vue
index ed554a0..a81184a 100644
--- a/pages/zw/zygl.vue
+++ b/pages/zw/zygl-agv.vue
@@ -1,6 +1,6 @@
-
+
@@ -20,30 +20,36 @@
- | 载具号 |
- 载具号2 |
- 批次 |
- 物料编码 |
+ 任务号 |
+ 批次号 |
物料名称 |
- 物料规格 |
- 物料类型 |
重量 |
+ 状态 |
起点1 |
终点1 |
+ 载具号1 |
+ 起点2 |
+ 终点2 |
+ 载具号2 |
+ 创建人 |
+ 创建时间 |
- | {{e.vehicle_code}} |
- {{e.vehicle_code2}} |
+ {{e.task_code}} |
{{e.pcsn}} |
- {{e.material_code}} |
{{e.material_name}} |
- {{e.material_spec}} |
- {{e.material_type}} |
{{e.qty}} |
+ {{e.task_status}} |
{{e.point_code1}} |
{{e.point_code2}} |
+ {{e.vehicle_code}} |
+ {{e.point_code3}} |
+ {{e.point_code4}} |
+ {{e.vehicle_code2}} |
+ {{e.create_name}} |
+ {{e.create_time}} |
@@ -51,10 +57,11 @@
-
+
+
@@ -62,7 +69,7 @@
diff --git a/utils/getData4.js b/utils/getData4.js
index 6fb461b..342c785 100644
--- a/utils/getData4.js
+++ b/utils/getData4.js
@@ -383,6 +383,10 @@ export const schTaskQueryTask = (code) => request({
url:'api/pda/schTask/queryTask',
data: {task_code: code}
})
+export const schTaskQueryTask1 = (code) => request({
+ url:'api/pda/schTask/queryTask1',
+ data: {task_code: code}
+})
export const schTaskAgainTask = (code) => request({
url:'api/pda/schTask/againTask',
data: {task_code: code}
@@ -391,3 +395,7 @@ export const forceConfirm = (code) => request({
url:'api/pda/schTask/forceConfirm',
data: {task_code: code}
})
+export const forceCancel = (code) => request({
+ url:'api/pda/schTask/forceCancel',
+ data: {task_code: code}
+})