diff --git a/pages.json b/pages.json
index f541877..0923216 100644
--- a/pages.json
+++ b/pages.json
@@ -248,6 +248,14 @@
}
}
+ ,{
+ "path" : "pages/transfer/tray-transfer",
+ "style" :
+ {
+ "navigationStyle": "custom"
+ }
+
+ }
],
"globalStyle": {
// "pageOrientation": "landscape",
diff --git a/pages/home/home.vue b/pages/home/home.vue
index 704a2fc..0c6d748 100644
--- a/pages/home/home.vue
+++ b/pages/home/home.vue
@@ -47,7 +47,8 @@
{title: '拣选管理', path: 'RF04', sonTree: [{title: '拣选作业', path: '/pages/pick/pick-task'}]},
{title: '盘点管理', path: 'RF05', sonTree: [{title: '盘点作业', path: '/pages/check/check-task'}]},
{title: '任务管理', path: 'RF06', sonTree: [{title: '任务管理', path: '/pages/task/task-manage'}]},
- {title: '设备操控', path: 'RF07', sonTree: [{title: '切换出入库模式', path: '/pages/mode/switch-in-out'}, {title: '拣选工位启停模式', path: '/pages/mode/pick'}, {title: '下发输送线运动命令', path: '/pages/mode/command'}]}
+ {title: '设备操控', path: 'RF07', sonTree: [{title: '切换出入库模式', path: '/pages/mode/switch-in-out'}, {title: '拣选工位启停模式', path: '/pages/mode/pick'}, {title: '下发输送线运动命令', path: '/pages/mode/command'}]},
+ {title: '转运管理', path: 'RF09', sonTree: [{title: '托盘转运', path: '/pages/transfer/tray-transfer'}]}
],
show: false,
secM: [],
diff --git a/pages/transfer/tray-transfer.vue b/pages/transfer/tray-transfer.vue
new file mode 100644
index 0000000..3863ac7
--- /dev/null
+++ b/pages/transfer/tray-transfer.vue
@@ -0,0 +1,99 @@
+
+
+
+
+
+
+
+
+ 起点
+
+
+
+
+
+
+
+ 终点
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/static/image/menu/RF09.png b/static/image/menu/RF09.png
new file mode 100644
index 0000000..6417a79
Binary files /dev/null and b/static/image/menu/RF09.png differ
diff --git a/utils/getData2.js b/utils/getData2.js
index fb0706f..75334d4 100644
--- a/utils/getData2.js
+++ b/utils/getData2.js
@@ -195,3 +195,15 @@ export const inStorageConfirm = (obj) => request({
url:'api/pda/inStorage/confirm',
data: obj
})
+
+/**
+ * 托盘转运
+ */
+export const deviceManageTransf = (start) => request({
+ url:'api/deviceManage/transf',
+ data: {start: start}
+})
+export const transfConfirm = (start, end) => request({
+ url:'api/deviceManage/transfConfirm',
+ data: {start: start, end: end}
+})
\ No newline at end of file
diff --git a/utils/mork2.js b/utils/mork2.js
index 701f866..1553ad1 100644
--- a/utils/mork2.js
+++ b/utils/mork2.js
@@ -210,4 +210,8 @@ export const outStorageOrderConfirm = (code) => {
"msg": ""
}
return res
+}
+export const deviceManageTransf = () => {
+ let res = [{value: '1109', text: '一楼楼入库点'}, {value: '2109', text: '二楼楼入库点'}]
+ return res
}
\ No newline at end of file