木箱称重

This commit is contained in:
2024-07-01 09:06:54 +08:00
parent 253814f08f
commit 9e94621f11
4 changed files with 114 additions and 1 deletions

View File

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

View File

@@ -0,0 +1,93 @@
<template>
<view class="zd_container">
<nav-bar 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" @handleChange="handleChange"/>
</view>
</view>
<view class="filter_item">
<view class="filter_label">重量</view>
<view class="filter_input_wraper">
<input type="text" class="filter_input" v-model="val2" :class="{'filter_input_disabled': disabled1}" :disabled="disabled1">
</view>
</view>
</view>
</view>
<view class="zd-row submitbar">
<button class="zd-col-6 btn-submit btn-default letter-30" @tap="clearUp">清空</button>
<button class="zd-col-15 btn-submit btn-success letter-30" :class="{'btn-info': !val1 || !val2}" :disabled="disabled" @tap="_saveBoxInfo">保存</button>
</view>
</view>
</template>
<script>
import NavBar from '@/components/NavBar.vue'
import SearchBox from '@/components/SearchBox.vue'
import {boxinfogetBoxInfo, saveBoxInfo} from '@/utils/getData3.js'
export default {
components: {
NavBar,
SearchBox
},
data() {
return {
val1: '',
val2: '',
disabled: false,
disabled1: true
};
},
watch: {
val1 () {
if (this.val1 === '') {
this.disabled1 = true
this.val2 = ''
}
}
},
methods: {
handleChange (e) {
this._boxinfogetBoxInfo(e)
},
/** 查询 */
async _boxinfogetBoxInfo (e) {
if (!e) {
return
}
let res = await boxinfogetBoxInfo(e)
this.val1 = res.box_no
this.val2 = res.box_weight
this.disabled1 = false
},
clearUp () {
this.val1 = ''
this.val2 = ''
this.disabled1 = true
},
async _saveBoxInfo () {
this.disabled = true
if (!this.val1 || !this.val2) {
this.disabled = false
return
}
try {
let res = await saveBoxInfo(this.val1, this.val2)
uni.showToast({
title: res.message,
icon: 'none'
})
this.clearUp()
this.disabled = false
} catch (e) {
this.disabled = false
}
}
}
}
</script>

View File

@@ -175,4 +175,15 @@ export const sendSubVolumeToNBJ = (code) => request({
export const toCleanCutCacheInventory = (code) => request({
url:'api/pda/slitter/toCleanCutCacheInventory',
data: {point_code: code}
})
/**
* 木箱称重
*/
export const boxinfogetBoxInfo = (code) => request({
url:'api/boxinfogetBoxInfo',
data: {box_no: code}
})
export const saveBoxInfo = (code, weight) => request({
url:'api/boxinfo/saveBoxInfo',
data: {box_no: code, box_weight: weight}
})

View File

@@ -91,7 +91,8 @@ export const authority = () => {
]},
{menu_id: '7', path: 'RF06', title: '成品入库', sonTree: [
{menu_id: '1', title: '退货入库', path: '/pages/SecondPhase/finished/ReturnToStore'},
{menu_id: '2', title: '异常口入库', path: '/pages/SecondPhase/finished/abnorToStore'}
{menu_id: '2', title: '异常口入库', path: '/pages/SecondPhase/finished/abnorToStore'},
{menu_id: '2', title: '木箱称重', path: '/pages/SecondPhase/finished/BoxWeight'}
]}
]
}