diff --git a/pages.json b/pages.json
index f90d8ee..34b87b6 100644
--- a/pages.json
+++ b/pages.json
@@ -72,6 +72,14 @@
}
}
+ ,{
+ "path" : "pages/modules/coating-line",
+ "style" :
+ {
+ "navigationStyle": "custom"
+ }
+
+ }
],
"globalStyle": {
// "pageOrientation": "landscape",
diff --git a/pages/home/home.vue b/pages/home/home.vue
index 9ea4e54..857d9e8 100644
--- a/pages/home/home.vue
+++ b/pages/home/home.vue
@@ -33,11 +33,12 @@
userName: '',
menuList: [
{id: '1', name: '工单管理', icon: 'RF01', path: '/pages/modules/man-paichan'},
- {id: '2', name: '涂线板', icon: 'RF02', path: '/pages/modules/wire-board'},
+ {id: '2', name: '普涂线', icon: 'RF02', path: '/pages/modules/wire-board'},
+ {id: '7', name: '连涂线', icon: 'RF07', path: '/pages/modules/coating-line'},
{id: '3', name: '物料库存', icon: 'RF03', path: '/pages/modules/mater-inventory'},
{id: '4', name: '库存管理', icon: 'RF04', path: '/pages/modules/point-manage'},
- {id: '5', name: '指令管理', icon: 'RF05', path: '/pages/modules/command-manage'},
- {id: '6', name: '任务管理', icon: 'RF06', path: '/pages/modules/task-manage'}
+ {id: '5', name: '指令管理', icon: 'RF06', path: '/pages/modules/command-manage'},
+ {id: '6', name: '任务管理', icon: 'RF05', path: '/pages/modules/task-manage'}
]
};
},
diff --git a/pages/modules/coating-line.vue b/pages/modules/coating-line.vue
new file mode 100644
index 0000000..1115623
--- /dev/null
+++ b/pages/modules/coating-line.vue
@@ -0,0 +1,137 @@
+
+
+
+
+
+
+ 点位编码
+
+
+
+
+
+ 动作
+
+
+
+
+
+
+
+
+ 点位1:
+ {{e.point_name1}}
+
+ {{e.point_name2}}
+
+
+ 点位2:
+ {{e.point_name3}}
+
+ {{e.point_name4}}
+
+
+ 备注:
+ {{e.remark}}
+ {{textState(e.task_status)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/pages/modules/wire-board.vue b/pages/modules/wire-board.vue
index ebda583..35ea56d 100644
--- a/pages/modules/wire-board.vue
+++ b/pages/modules/wire-board.vue
@@ -1,6 +1,6 @@
-
+
@@ -97,7 +97,6 @@
this.$set(el, 'text', el.point_name)
})
this.options1 = [...res]
- console.log(this.options1)
},
/** grid查询 */
async _coatedWireIntoStorageTaskShow () {
diff --git a/static/image/menu/RF07.png b/static/image/menu/RF07.png
new file mode 100644
index 0000000..df4e2f4
Binary files /dev/null and b/static/image/menu/RF07.png differ
diff --git a/utils/getData2.js b/utils/getData2.js
index 31cba85..0fc9060 100644
--- a/utils/getData2.js
+++ b/utils/getData2.js
@@ -63,6 +63,21 @@ export const coatedWireIntoStorageTask = (code, qty) => request({
}
})
+/**
+ * 连涂线
+ */
+export const getLtxPointList = () => request({
+ url:'api/pda/getLtxPointList',
+ data: {}
+})
+export const ltxTask = (code, action) => request({
+ url:'api/pda/manualSorting/ltxTask',
+ data: {
+ point_code: code,
+ action: action
+ }
+})
+
/**
* 物料库存
*/