货架盘点
This commit is contained in:
@@ -107,6 +107,13 @@
|
||||
}
|
||||
|
||||
}
|
||||
,{
|
||||
"path" : "pages/modules/shelf-check",
|
||||
"style": {
|
||||
"navigationStyle": "custom"
|
||||
}
|
||||
|
||||
}
|
||||
],
|
||||
"globalStyle": {
|
||||
// "pageOrientation": "landscape",
|
||||
|
||||
@@ -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,
|
||||
|
||||
19
pages/modules/shelf-check.vue
Normal file
19
pages/modules/shelf-check.vue
Normal file
@@ -0,0 +1,19 @@
|
||||
<template>
|
||||
<view>
|
||||
|
||||
</view>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
data() {
|
||||
return {
|
||||
|
||||
};
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style lang="stylus">
|
||||
|
||||
</style>
|
||||
@@ -126,10 +126,11 @@ export const manualSortingPackingTaskShow = () => request({
|
||||
data: {}
|
||||
})
|
||||
// 确认
|
||||
export const manualSortingPackingTask = (code, qty) => request({
|
||||
export const manualSortingPackingTask = (code, qty, sqty) => request({
|
||||
url:'/api/pda/manualSorting/packingTask',
|
||||
data: {
|
||||
vehicle_code: code,
|
||||
qty: qty
|
||||
qty: qty,
|
||||
surplus_quantity: sqty
|
||||
}
|
||||
})
|
||||
Reference in New Issue
Block a user