diff --git a/pages.json b/pages.json
index 9b5762c..42f22d8 100644
--- a/pages.json
+++ b/pages.json
@@ -442,6 +442,14 @@
}
}
+ ,{
+ "path" : "pages/zw/ll-instore",
+ "style" :
+ {
+ "navigationStyle": "custom"
+ }
+
+ }
],
"globalStyle": {
// "pageOrientation": "landscape",
diff --git a/pages/home/home.vue b/pages/home/home.vue
index 855da1b..77f446f 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/zw/jb-up-mater'}, {title: '解包下料', path: '/pages/zw/jb-lower-mater'}, {title: '料桶出入', path: '/pages/zw/materbox-instore'}, {title: '解包退料', path: '/pages/zw/jb-return-mater'}, {title: '人车安全', path: '/pages/zw/mancar-safe'}]},
+ {title: '解包管理', path: 'RF03', sonTree: [{title: '解包上料', path: '/pages/zw/jb-up-mater'}, {title: '解包下料', path: '/pages/zw/jb-lower-mater'}, {title: '料桶出入', path: '/pages/zw/materbox-instore'}, {title: '解包退料', path: '/pages/zw/jb-return-mater'}, {title: '人车安全', path: '/pages/zw/mancar-safe'}, {title: '来料入库', path: '/pages/zw/ll-instore'}]},
// {title: '预装管理', path: 'RF04', sonTree: [{title: '物料组盘', path: '/pages/entry/mater-group'}, {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/out-store-confirm'}]},
// {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/pages/zw/ll-instore.vue b/pages/zw/ll-instore.vue
new file mode 100644
index 0000000..032c5c1
--- /dev/null
+++ b/pages/zw/ll-instore.vue
@@ -0,0 +1,168 @@
+
+
+
+
+
+
+
+
+ 单据
+
+
+
+
+
+
+
+ 托盘码
+
+
+
+
+
+
+
+ 点位码
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ | 选择 |
+ 托盘码 |
+ 点位码 |
+
+
+
+
+ | {{e.vid}} |
+ {{e.vehicle_code}} |
+ {{e.site_code}} |
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/utils/getData4.js b/utils/getData4.js
index a33cf93..7efa133 100644
--- a/utils/getData4.js
+++ b/utils/getData4.js
@@ -204,3 +204,15 @@ export const getAllIntoRegionMembers = (rcode) => request({
url:'api/pda/jb/getAllIntoRegionMembers',
data: {region_code: rcode}
})
+
+// 来料入库
+// 来料入库接口
+export const zwConfirmIn = (fdcode, plist) => request({
+ url:'api/pda/iosIn/zwConfirmIn',
+ data: {form_data_code: fdcode, param_list: plist}
+})
+// 获取单据下拉清单
+export const getFormDataList = (fdcode) => request({
+ url:'api/pda/iosIn/getFormDataList',
+ data: {form_data_code: fdcode}
+})