diff --git a/pages.json b/pages.json
index 874c38b..1e2aa68 100644
--- a/pages.json
+++ b/pages.json
@@ -50,6 +50,16 @@
"navigationStyle": "custom"
}
}
+ ,{
+ "path" : "pages/modules/SequenceTable",
+ "style" :
+ {
+ "navigationStyle": "custom",
+ "enablePullDownRefresh": true,
+ "onReachBottomDistance": 50
+ }
+
+ }
],
"globalStyle": {
"navigationBarTextStyle": "black",//导航栏标题颜色及状态栏前景颜色,仅支持 black/white
diff --git a/pages/home/home.vue b/pages/home/home.vue
index 6c4c9ab..ef94813 100644
--- a/pages/home/home.vue
+++ b/pages/home/home.vue
@@ -39,7 +39,8 @@
{id: '1', name: '仓储管理', sonTree: [
{menu_id: '1', icon: 'RF01', name: '半成品入库', path: '/pages/modules/SemifinishedInStore'},
{menu_id: '2', icon: 'RF02', name: '半成品出库', path: '/pages/modules/SemifinishedOutStore'},
- {menu_id: '3', icon: 'RF03', name: '空箱出库', path: '/pages/modules/EmptyOutStore'}
+ {menu_id: '3', icon: 'RF03', name: '空箱出库', path: '/pages/modules/EmptyOutStore'},
+ {menu_id: '4', icon: 'RF04', name: '出入库顺序表', path: '/pages/modules/SequenceTable'}
]}
],
show: false,
diff --git a/pages/login/login.vue b/pages/login/login.vue
index 500390e..64d56a7 100644
--- a/pages/login/login.vue
+++ b/pages/login/login.vue
@@ -146,7 +146,7 @@
_font(40rpx,75rpx,#444, 600)
padding-top: 90rpx
.p2
- _font(50rpx,1,#444, 600)
+ _font(52rpx,1,#444, 600)
padding: 10rpx 0 55rpx 0
.input-box
_fj()
diff --git a/pages/modules/SequenceTable.vue b/pages/modules/SequenceTable.vue
new file mode 100644
index 0000000..85cb52f
--- /dev/null
+++ b/pages/modules/SequenceTable.vue
@@ -0,0 +1,162 @@
+
+
+
+
+
+
+
+ 料箱码
+
+
+
+
+
+
+
+
+
+
+
+ | 车间 |
+ 出入库类型 |
+ 顺序id |
+ 仓库 |
+ 入库点 |
+ 出库点 |
+ 箱码 |
+ 重量 |
+ 工单编号 |
+ 工序 |
+ 创建时间 |
+
+
+
+
+ | {{e.workshop_id}} |
+ {{e.type}} |
+ {{e.order_id}} |
+ {{e.stor_id}} |
+ {{e.in_device}} |
+ {{e.out_device}} |
+ {{e.bar_code}} |
+ {{e.weight}} |
+ {{e.workorder_id}} |
+ {{e.workprocedure_id}} |
+ {{e.create_time}} |
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/static/image/menu/RF04.png b/static/image/menu/RF04.png
new file mode 100644
index 0000000..796026f
Binary files /dev/null and b/static/image/menu/RF04.png differ
diff --git a/utils/getData2.js b/utils/getData2.js
index 0d2f6db..c38bac1 100644
--- a/utils/getData2.js
+++ b/utils/getData2.js
@@ -101,3 +101,21 @@ export const getPoint = (sp) => request({
url:'api/pda/hrBcp/iosIn/getPoint',
data: {}
})
+
+/**
+ * 出入库顺序表
+ */
+// 查询
+export const hrBcpOrderList = (code, page, size) => request({
+ url:'api/pda/hrBcp/order/list',
+ data: {
+ bar_code: code,
+ page: page,
+ size: size
+ }
+})
+// 强制确认
+export const hrBcpOrderDelete = (arr) => request({
+ url:'api/pda/hrBcp/order/delete',
+ data: arr
+})
\ No newline at end of file