物料入库

This commit is contained in:
2025-11-13 16:24:56 +08:00
parent e8a2cf10fa
commit d0ff76238e
7 changed files with 205 additions and 17 deletions

View File

@@ -132,4 +132,8 @@ export default {
border-radius: 4px;
font-size: 14px;
}
input {
font-size: 14px;
color: #333;
}
</style>

View File

@@ -85,6 +85,7 @@
},
onLoad (options) {
this.title = options.title
this.searchList()
},
methods: {
searchList () {

View File

@@ -29,12 +29,13 @@
</view>
</view>
<view class="zd-row border-bottom">
<view class="zd-col-7">
<span class="filter_label">物料单重(kg)</span>
<view class="zd-col-6">
<span class="filter_label">物料单重</span>
</view>
<view class="zd-col-17">
<view class="zd-col-16">
<NumberInput v-model="currentData.single_weight"/>
</view>
<view class="zd-col-2"><span class="filter_unit">KG</span></view>
</view>
<view class="zd-row border-bottom">
<view class="zd-col-7">
@@ -65,7 +66,29 @@
<span class="filter_label">料桶编码</span>
</view>
<view class="zd-col-17 filter_select">
<zxz-uni-data-select v-model="index1" filterable :localdata="options1"></zxz-uni-data-select>
<!-- <zxz-uni-data-select v-model="index1" filterable :localdata="options1"></zxz-uni-data-select> -->
<!-- <uni-data-select v-model="index1" :localdata="options1" @change="selectChange1"></uni-data-select> -->
<view class="input-wrapper">
<input
class="input-field"
v-model="materialCode"
placeholder="请输入或选择料桶编码"
placeholder-class="placeholder"
@input="onInput"
/>
<picker
class="picker"
mode="selector"
:range="materialOptions"
:value="selectedIndex"
@change="onPickerChange"
>
<view class="picker-trigger">
<!-- <text class="picker-text">></text> -->
<text class="uni-icons zd_icon_wraper uniui-bottom" style="color: rgb(153, 153, 153); font-size: 14px;"></text>
</view>
</picker>
</view>
</view>
</view>
</view>
@@ -95,8 +118,21 @@
currentData: {},
options: [],
index: '',
options1: [],
index1: '',
// options1: [{text:'t1', value: 't1'}, {text:'t2', value: 't2'}],
// index1: '',
materialCode: '',
selectedIndex: 0,
materialOptions: [],
// materialOptions: [
// 'TB-001',
// 'TB-002',
// 'TB-003',
// 'TB-004',
// 'TB-005',
// 'TB-006',
// 'TB-007',
// 'TB-008'
// ],
disabled: false
};
},
@@ -112,9 +148,20 @@
}
},
methods: {
onInput(e) {
// console.log('输入内容:', e.detail.value)
},
onPickerChange(e) {
const index = e.detail.value
this.selectedIndex = index
this.materialCode = this.materialOptions[index]
},
selectChange (e) {
this.index = e
},
selectChange1 (e) {
this.index1 = e
},
async _suppList () {
try {
let res = await suppList()
@@ -129,8 +176,16 @@
},
/** 料桶编码下拉框*/
async _vehiclelist () {
let res = await vehiclelist()
this.options1 = [...res]
try {
let res = await vehiclelist()
if (res) {
this.materialOptions = res.data.map(item => item.value);
} else {
this.materialOptions = []
}
} catch (e) {
this.materialOptions = []
}
},
toJump () {
uni.navigateTo({
@@ -173,6 +228,8 @@
}
}
})
} else {
this._combination()
}
},
async _combination () {
@@ -193,4 +250,122 @@
</script>
<style lang="stylus">
.input-container {
background-color: #fff;
border-radius: 16rpx;
padding: 30rpx;
box-shadow: 0 4rpx 20rpx rgba(0, 0, 0, 0.05);
margin-bottom: 40rpx;
}
.input-wrapper {
position: relative;
display: flex;
align-items: center;
// border: 2rpx solid #e0e0e0;
border-radius: 12rpx;
overflow: hidden;
transition: border-color 0.3s;
}
.input-wrapper:focus-within {
border-color: #007AFF;
}
.input-field {
flex: 1;
height: 80rpx;
// padding: 0 24rpx;
font-size: 28rpx;
color: #333;
}
.placeholder {
color: #999;
font-size: 28rpx;
}
.picker {
width: 80rpx;
height: 80rpx;
display: flex;
align-items: center;
justify-content: center;
background-color: #f8f8f8;
border-left: 2rpx solid #e0e0e0;
}
.picker-trigger {
width: 100%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
}
.picker-text {
font-size: 24rpx;
color: #666;
}
.hint {
margin-top: 20rpx;
font-size: 24rpx;
color: #999;
text-align: center;
}
.result-section {
background-color: #fff;
border-radius: 16rpx;
padding: 30rpx;
margin-bottom: 40rpx;
display: flex;
flex-direction: column;
box-shadow: 0 4rpx 20rpx rgba(0, 0, 0, 0.05);
}
.result-label {
font-size: 28rpx;
color: #666;
margin-bottom: 16rpx;
}
.result-value {
font-size: 36rpx;
font-weight: bold;
color: #007AFF;
}
.history-section {
background-color: #fff;
border-radius: 16rpx;
padding: 30rpx;
box-shadow: 0 4rpx 20rpx rgba(0, 0, 0, 0.05);
}
.history-title {
font-size: 28rpx;
color: #333;
margin-bottom: 24rpx;
display: block;
}
.history-list {
display: flex;
flex-wrap: wrap;
gap: 20rpx;
}
.history-item {
background-color: #f0f8ff;
border-radius: 12rpx;
padding: 16rpx 24rpx;
border: 1rpx solid #cce5ff;
}
.history-code {
font-size: 26rpx;
color: #007AFF;
}
</style>

View File

@@ -53,12 +53,13 @@
</view>
</view>
<view class="zd-row border-bottom">
<view class="zd-col-7">
<span class="filter_label filter_input_disabled">数量(kg)</span>
<view class="zd-col-6">
<span class="filter_label filter_input_disabled">数量</span>
</view>
<view class="zd-col-17">
<view class="zd-col-16">
<input type="text" class="filter_input filter_input_disabled" v-model="currentData.qty" disabled>
</view>
<view class="zd-col-2"><span class="filter_unit">KG</span></view>
</view>
<!-- <view class="zd-row border-bottom">
<view class="zd-col-7">

View File

@@ -21,12 +21,13 @@
</view>
</view>
<view v-show="index4 !== '2'" class="zd-row border-bottom">
<view class="zd-col-7">
<span class="filter_label">物料数量(kg)</span>
<view class="zd-col-6">
<span class="filter_label">物料数量</span>
</view>
<view class="zd-col-17">
<view class="zd-col-16">
<input type="text" class="filter_input" v-model="qty">
</view>
<view class="zd-col-2"><span class="filter_unit">KG</span></view>
</view>
</view>
</view>
@@ -149,6 +150,8 @@
}
}
})
} else {
this._checkoutbillBackMaterial()
}
},
async _checkoutbillBackMaterial () {

View File

@@ -203,6 +203,7 @@
let res = await jbGetLtInfo(this.index, this.val2)
if (res.code === '200') {
this.currentData = res.data
this.val2 = this.currentData.storagevehicle_code
uni.showToast({
title: res.message,
icon: 'none'

View File

@@ -64,12 +64,13 @@
</view>
</view>
<view class="zd-row border-bottom">
<view class="zd-col-7">
<span class="filter_label">物料数量(kg)</span>
<view class="zd-col-6">
<span class="filter_label">物料数量</span>
</view>
<view class="zd-col-17">
<view class="zd-col-16">
<NumberInput v-model="currentData.qty" />
</view>
<view class="zd-col-2"><span class="filter_unit">KG</span></view>
</view>
<view class="zd-row border-bottom">
<view class="zd-col-7">
@@ -211,6 +212,8 @@
}
}
})
} else {
this._zwgroupPlate()
}
},
async _zwgroupPlate () {