diff --git a/pages.json b/pages.json
index e80da9f..1b9ac65 100644
--- a/pages.json
+++ b/pages.json
@@ -30,7 +30,13 @@
{
"navigationStyle": "custom"
}
-
+ }
+ ,{
+ "path" : "pages/SecondPhase/EmptyVehicleOutStore",
+ "style" :
+ {
+ "navigationStyle": "custom"
+ }
}
,{
"path" : "pages/SecondPhase/EmptyBoxInStore",
diff --git a/pages/SecondPhase/EmptyVehicleOutStore.vue b/pages/SecondPhase/EmptyVehicleOutStore.vue
new file mode 100644
index 0000000..a18f884
--- /dev/null
+++ b/pages/SecondPhase/EmptyVehicleOutStore.vue
@@ -0,0 +1,101 @@
+
+
+
+
+
+
+
+
+ {{$t('grid.point-code')}}
+
+
+
+
+
+
+ {{$t('filter.vehicle-type')}}
+
+
+
+
+
+ {{$t('filter.quantity')}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/utils/getData3.js b/utils/getData3.js
index a3e9d72..ddc3d81 100644
--- a/utils/getData3.js
+++ b/utils/getData3.js
@@ -17,6 +17,15 @@ export const twoPdaVehicleIn = (code, type, pcode, layer) => request({
layer: layer
}
})
+// 1.1空载具出库-【出库按钮】
+export const twoPdaVehicleOut = (pcode, type, num) => request({
+ url:'api/twoPda/vehicle/vehicleOut',
+ data: {
+ point_code: pcode,
+ vehicle_type: type,
+ num: num
+ }
+})
// 字典获取
export const dictDetailpdaPost = (no, code) => request({
url:'api/dict/dictDetail/pdaPost',
diff --git a/utils/mork2.js b/utils/mork2.js
index 88c6165..9413476 100644
--- a/utils/mork2.js
+++ b/utils/mork2.js
@@ -5,8 +5,9 @@ export const allAuthority = () => {
rf_menu0: {},
rf_menu1: {
sonTree: [
- {menu_id: '1', path: 'RF08', zh_title: '载具入库', sonTree: [
- {menu_id: '1', zh_title: '空载具入库', path: '/pages/SecondPhase/EmptyVehicleInStore'}
+ {menu_id: '1', path: 'RF08', zh_title: '载具出入库', sonTree: [
+ {menu_id: '1', zh_title: '空载具入库', path: '/pages/SecondPhase/EmptyVehicleInStore'},
+ {menu_id: '2', zh_title: '空载具出库', path: '/pages/SecondPhase/EmptyVehicleOutStore'}
]},
{menu_id: '2', path: 'RF11', zh_title: '空木箱入库', sonTree: [
{menu_id: '1', zh_title: '空木箱入库', path: '/pages/SecondPhase/EmptyBoxInStore'}