diff --git a/locale/en.json b/locale/en.json
index bf2709f..bf0dc14 100644
--- a/locale/en.json
+++ b/locale/en.json
@@ -136,6 +136,8 @@
"filter.last-roll-down": "Last Coil Unloading",
"filter.cache-point": "Cache Point",
"filter.box-no": "Wooden Box Number",
+ "filter.up-box-no": "Upper Wooden Box Number",
+ "filter.down-box-no": "Lower Wooden Box Number",
"filter.box-code": "Wooden Box Coding",
"filter.box-type": "Wooden box part number",
"filter.virtual-library": "Virtual warehouse",
diff --git a/locale/id.json b/locale/id.json
index 8e5c535..6c3f13d 100644
--- a/locale/id.json
+++ b/locale/id.json
@@ -136,6 +136,8 @@
"filter.last-roll-down": "Pengambilan Gulungan Terakhir",
"filter.cache-point": "Titik Penyimpanan Sementara",
"filter.box-no": "Nomor Kotak Kayu",
+ "filter.up-box-no": "Nomor kotak kayu atas",
+ "filter.down-box-no": "Nomor kotak bawah",
"filter.box-code": "Pengkodean Kotak Kayu",
"filter.box-type": "Nomor bagian kotak kayu",
"filter.virtual-library": "Gudang virtual",
diff --git a/locale/zh-Hans.json b/locale/zh-Hans.json
index f5408eb..70f56b2 100644
--- a/locale/zh-Hans.json
+++ b/locale/zh-Hans.json
@@ -136,6 +136,8 @@
"filter.last-roll-down": "末次下卷",
"filter.cache-point": "缓存点位",
"filter.box-no": "木箱号",
+ "filter.up-box-no": "上木箱号",
+ "filter.down-box-no": "下木箱号",
"filter.box-code": "木箱编码",
"filter.box-type": "木箱料号",
"filter.virtual-library": "虚拟库",
diff --git a/pages.json b/pages.json
index c6f49ba..e80da9f 100644
--- a/pages.json
+++ b/pages.json
@@ -463,7 +463,27 @@
{
"navigationStyle": "custom"
}
-
+ }
+ ,{
+ "path" : "pages/SecondPhase/kmxk/EmptyBoxOnline",
+ "style" :
+ {
+ "navigationStyle": "custom"
+ }
+ }
+ ,{
+ "path" : "pages/SecondPhase/kmxk/TuihuoIntoStore",
+ "style" :
+ {
+ "navigationStyle": "custom"
+ }
+ }
+ ,{
+ "path" : "pages/SecondPhase/kmxk/ProduceIntoStore",
+ "style" :
+ {
+ "navigationStyle": "custom"
+ }
}
,{
"path" : "pages/SecondPhase/PackRelation",
diff --git a/pages/SecondPhase/kmxk/EmptyBoxOnline.vue b/pages/SecondPhase/kmxk/EmptyBoxOnline.vue
new file mode 100644
index 0000000..495be3f
--- /dev/null
+++ b/pages/SecondPhase/kmxk/EmptyBoxOnline.vue
@@ -0,0 +1,99 @@
+
+
+
+
+
+
+
+
+ {{$t('filter.up-box-no')}}
+
+
+
+
+
+
+
+ {{$t('filter.down-box-no')}}
+
+
+
+
+
+
+
+ {{$t('grid.point-code')}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/pages/SecondPhase/kmxk/ProduceIntoStore.vue b/pages/SecondPhase/kmxk/ProduceIntoStore.vue
new file mode 100644
index 0000000..5a7694e
--- /dev/null
+++ b/pages/SecondPhase/kmxk/ProduceIntoStore.vue
@@ -0,0 +1,88 @@
+
+
+
+
+
+
+
+
+ {{$t('filter.box-no')}}
+
+
+
+
+
+
+
+ {{$t('grid.point-code')}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/pages/SecondPhase/kmxk/TuihuoIntoStore.vue b/pages/SecondPhase/kmxk/TuihuoIntoStore.vue
new file mode 100644
index 0000000..ccbf870
--- /dev/null
+++ b/pages/SecondPhase/kmxk/TuihuoIntoStore.vue
@@ -0,0 +1,88 @@
+
+
+
+
+
+
+
+
+ {{$t('filter.box-no')}}
+
+
+
+
+
+
+
+ {{$t('grid.point-code')}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/pages/home/home.vue b/pages/home/home.vue
index 9bb8155..fc68202 100644
--- a/pages/home/home.vue
+++ b/pages/home/home.vue
@@ -69,8 +69,8 @@
},
methods: {
async _authority () {
- let res = await authority()
- // let res = await allAuthority()
+ // let res = await authority()
+ let res = await allAuthority()
if (res.code === '1') {
this.menuList = [...res.result.rf_menu1.sonTree]
} else {
diff --git a/utils/getData4.js b/utils/getData4.js
index fb4a388..0037601 100644
--- a/utils/getData4.js
+++ b/utils/getData4.js
@@ -75,3 +75,28 @@ export const getBoxSpecInfo = (pcode, mcode, vcode) => request({
url:'api/boxStackInOut/getBoxSpecInfo',
data: {}
})
+// 木箱库-空木箱上线
+export const boxUpLine = (upbno, downbno, pcode) => request({
+ url:'api/twoPda/vehicle/boxUpLine',
+ data: {
+ up_box_no: upbno,
+ down_box_no: downbno,
+ point_code: pcode
+ }
+})
+// 木箱库-退货入库
+export const returnIn = (bno, pcode) => request({
+ url:'api/twoPda/vehicle/returnIn',
+ data: {
+ box_no: bno,
+ point_code: pcode
+ }
+})
+// 木箱库-生产入库
+export const productionIn = (bno, pcode) => request({
+ url:'api/twoPda/vehicle/productionIn',
+ data: {
+ box_no: bno,
+ point_code: pcode
+ }
+})
diff --git a/utils/mork2.js b/utils/mork2.js
index 03786d4..88c6165 100644
--- a/utils/mork2.js
+++ b/utils/mork2.js
@@ -84,7 +84,10 @@ export const allAuthority = () => {
{menu_id: '10', path: 'RF05', zh_title: '空木箱库', sonTree: [
{menu_id: '1', zh_title: '空木箱入库', path: '/pages/SecondPhase/kmxk/EmptyBoxIntoStore'},
{menu_id: '2', zh_title: '空木箱维护', path: '/pages/SecondPhase/kmxk/EmptyBoxSave'},
- {menu_id: '3', zh_title: '点位维护', path: '/pages/SecondPhase/kmxk/PointSave'}
+ {menu_id: '3', zh_title: '点位维护', path: '/pages/SecondPhase/kmxk/PointSave'},
+ {menu_id: '4', zh_title: '空木箱上线', path: '/pages/SecondPhase/kmxk/EmptyBoxOnline'},
+ {menu_id: '5', zh_title: '退货入库', path: '/pages/SecondPhase/kmxk/TuihuoIntoStore'},
+ {menu_id: '6', zh_title: '生产入库', path: '/pages/SecondPhase/kmxk/ProduceIntoStore'}
]}
]
}