货架盘点

This commit is contained in:
2023-10-18 10:13:33 +08:00
parent b1afa0cc48
commit 12f5b32eaf
4 changed files with 38 additions and 3 deletions

View File

@@ -15,6 +15,12 @@
<input type="number" class="filter_input" v-model="val2">
</view>
</view>
<view class="filter_item">
<view class="filter_label">剩余数量</view>
<view class="filter_input_wraper">
<input type="number" class="filter_input" v-model="val3">
</view>
</view>
</view>
<view class="zd_wrapper grid-wraper">
<view class="slide_new">
@@ -61,6 +67,7 @@
return {
val1: '',
val2: '',
val3: '0',
dataList: [],
disabled: false
};
@@ -82,10 +89,11 @@
return
}
try {
let res = await manualSortingPackingTask(this.val1, this.val2)
let res = await manualSortingPackingTask(this.val1, this.val2, this.val3)
this.disabled = false
this.val1 = ''
this.val2 = ''
this.val3 = '0'
this._manualSortingPackingTaskShow()
uni.showToast({
title: res.message,

View File

@@ -0,0 +1,19 @@
<template>
<view>
</view>
</template>
<script>
export default {
data() {
return {
};
}
}
</script>
<style lang="stylus">
</style>