add装箱口木箱回库

This commit is contained in:
2025-04-22 17:13:10 +08:00
parent 271c7db0d4
commit 16812a1e7f
4 changed files with 103 additions and 1 deletions

View File

@@ -663,6 +663,14 @@
}
}
,{
"path" : "pages/SecondPhase/BoxReturn",
"style" :
{
"navigationStyle": "custom"
}
}
],
"globalStyle": {
// "pageOrientation": "landscape",

View File

@@ -0,0 +1,83 @@
<template>
<view class="zd_container">
<!-- <nav-bar title="装箱口木箱回库"></nav-bar> -->
<nav-bar :title="title"></nav-bar>
<view class="zd_content">
<view class="zd_wrapper">
<view class="filter_item">
<view class="filter_label_wraper">
<span class="filter_label">装箱点</span>
</view>
<view class="filter_input_wraper">
<search-box
v-model="val1"
/>
</view>
</view>
<view class="filter_item">
<view class="filter_label_wraper">
<span class="filter_label">木箱码</span>
</view>
<view class="filter_input_wraper">
<search-box
v-model="val2"
/>
</view>
</view>
</view>
</view>
<view class="zd-row submitbar">
<button class="zd-col-6 btn-submit btn-default" @tap="clearUp">清空</button>
<button class="zd-col-15 btn-submit btn-success" :class="{'btn-info': !val1 || !val2}" :disabled="disabled" @tap="_boxReturn">确认</button>
</view>
</view>
</template>
<script>
import NavBar from '@/components/NavBar.vue'
import SearchBox from '@/components/SearchBox.vue'
import {boxReturn} from '@/utils/getData3.js'
export default {
components: {
NavBar,
SearchBox
},
data() {
return {
title: '',
val1: '',
val2: '',
disabled: false
};
},
onLoad (options) {
this.title = options.title
},
methods: {
clearUp () {
this.val1 = ''
this.val2 = ''
this.disabled = false
},
async _boxReturn () {
this.disabled = true
if (!this.val1 || !this.val2) {
this.disabled = false
return
}
try {
let res = await boxReturn(this.val1, this.val2)
if (res) {
this.clearUp()
uni.showToast({
title: res.message,
icon: 'none'
})
}
} catch (e) {
this.disabled = false
}
}
}
}
</script>

View File

@@ -517,4 +517,14 @@ export const pdaDownRoll = (code, arr) => request({
point_code: code,
container: arr
}
})
/**
* 装箱口木箱回库
*/
export const boxReturn = (code, box) => request({
url:'api/pdmBiSubpackagerelation/boxReturn',
data: {
device_code: code,
box: box
}
})

View File

@@ -108,7 +108,8 @@ export const allAuthority = () => {
{menu_id: '8', title: '母卷暂存管理', path: '/pages/SecondPhase/slitting/RollCacheManage'}
]},
{menu_id: '10', path: 'RF15', title: '打包间管理', sonTree: [
{menu_id: '1', title: '子卷包装解绑', path: '/pages/SecondPhase/SubRollPackUnbind'}
{menu_id: '1', title: '子卷包装解绑', path: '/pages/SecondPhase/SubRollPackUnbind'},
{menu_id: '1', title: '装箱口木箱回库', path: '/pages/SecondPhase/BoxReturn'}
]},
{menu_id: '6', path: 'RF04', title: '点位管理', sonTree: [
{menu_id: '1', title: '点位管理', path: '/pages/SecondPhase/point/PointManage'},