diff --git a/pages.json b/pages.json
index 88dcdb0..63d6c6b 100644
--- a/pages.json
+++ b/pages.json
@@ -492,6 +492,13 @@
"navigationStyle": "custom"
}
}
+ ,{
+ "path" : "pages/ftdl/inout-area-mark",
+ "style" :
+ {
+ "navigationStyle": "custom"
+ }
+ }
],
"globalStyle": {
// "pageOrientation": "landscape",
diff --git a/pages/ftdl/inout-area-mark.vue b/pages/ftdl/inout-area-mark.vue
new file mode 100644
index 0000000..b1e499c
--- /dev/null
+++ b/pages/ftdl/inout-area-mark.vue
@@ -0,0 +1,194 @@
+
+
+
+
+
+
+
+
+ 管制区域
+
+
+
+
+
+
+
+
+
+
+
+ | 序号 |
+ 进入时间 |
+ 进入人 |
+ 进入区域 |
+
+
+
+
+ | {{i+1}} |
+ {{e.create_time}} |
+ {{e.create_name}} |
+ {{e.region_name}} |
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/pages/home/home.vue b/pages/home/home.vue
index fef2cea..2978686 100644
--- a/pages/home/home.vue
+++ b/pages/home/home.vue
@@ -41,7 +41,7 @@
return {
userName: '',
menuList: [
- {title: '东丽管理', path: 'RF03', sonTree: [{title: '人工放货', path: '/pages/ftdl/man-load-goods'}, {title: '人工取货', path: '/pages/ftdl/man-get-goods'}, {title: '产线叫料', path: '/pages/ftdl/line-call-mater'}, {title: '产线下料', path: '/pages/ftdl/line-down-mater'}, {title: '库存锁定/解锁', path: '/pages/ftdl/kc-manage'}, {title: '定点作业', path: '/pages/ftdl/fixedpoint-work'}, {title: '作业管理', path: '/pages/ftdl/work-manage'}]},
+ {title: '东丽管理', path: 'RF03', sonTree: [{title: '人工放货', path: '/pages/ftdl/man-load-goods'}, {title: '人工取货', path: '/pages/ftdl/man-get-goods'}, {title: '产线叫料', path: '/pages/ftdl/line-call-mater'}, {title: '产线下料', path: '/pages/ftdl/line-down-mater'}, {title: '库存锁定/解锁', path: '/pages/ftdl/kc-manage'}, {title: '定点作业', path: '/pages/ftdl/fixedpoint-work'}, {title: '作业管理', path: '/pages/ftdl/work-manage'}, {title: '进出区域登记', path: '/pages/ftdl/inout-area-mark'}]},
// {title: '预装管理', path: 'RF04', sonTree: [{title: '物料组盘', path: '/pages/entry/mater-group2'}, {title: '货架绑定', path: '/pages/outbound/shelf-bind'}]},
// {title: '产线管理', path: 'RF07', sonTree: [{title: '产线叫料', path: '/pages/outbound/line-callmater'}, {title: '线边仓出库', path: '/pages/outbound/mater-outstore'}, {title: '产线转运', path: '/pages/outbound/line-transfer2'}]},
// {title: '入库管理', path: 'RF01', sonTree: [{title: '物料组盘', path: '/pages/entry/mater-group'}, {title: '组盘入库', path: '/pages/entry/groupplate-instore'}, {title: '货架绑定', path: '/pages/outbound/shelf-bind'}, {title: '拣选余料回库', path: '/pages/entry/pick-yl-return-store'}, {title: '空载具入库', path: '/pages/entry/empty-vehicle-instore'}]},
diff --git a/utils/getData4.js b/utils/getData4.js
index 6eb900a..adc2636 100644
--- a/utils/getData4.js
+++ b/utils/getData4.js
@@ -121,3 +121,20 @@ export const forceConfirm = (tcode) => request({
url:'api/hand/forceConfirm',
data: {task_code: tcode}
})
+
+// 管制区域
+// 1.1根据区域查询进出区域信息
+export const selectRegionInfo = (rcode) => request({
+ url:'api/hand/selectRegionInfo',
+ data: {region_code: rcode}
+})
+// 1.3进入
+export const inArea = (rcode) => request({
+ url:'api/hand/inArea',
+ data: {region_code: rcode}
+})
+// 1.3强制确认
+export const outArea = (rcode) => request({
+ url:'api/hand/outArea',
+ data: {region_code: rcode}
+})