Files
hht-ximenzi-uni/pages/manage/mater-in-storage.vue
2024-09-18 16:54:47 +08:00

153 lines
4.0 KiB
Vue

<template>
<view class="zd_container">
<nav-bar :title="title"></nav-bar>
<view class="zd_content">
<view class="zd_wrapper">
<view class="zd-row border-bottom">
<view class="zd-col-5">
<span class="filter_label">当前点位</span>
</view>
<view class="zd-col-19">
<search-box
v-model="val1"
/>
</view>
</view>
<view class="zd-row border-bottom">
<view class="zd-col-5">
<span class="filter_label">载具号</span>
</view>
<view class="zd-col-19">
<search-box
v-model="val2"
/>
</view>
</view>
<view class="zd-row">
<view class="zd-col-5">
<span class="filter_label">目的地</span>
</view>
<view class="zd-col-19 filter_select">
<uni-data-select v-model="index" :localdata="options" @change="selectChange"></uni-data-select>
</view>
</view>
</view>
<view class="zd_wrapper grid-wraper">
<view class="slide_new">
<table>
<thead>
<tr>
<th>操作</th>
<th>订单号</th>
<th>物料号</th>
<th>物料数量</th>
</tr>
</thead>
<tbody>
<tr v-for="(e, i) in dataList" :key="i">
<td @tap="addRow"><uni-icons type="plus-filled" size="30" color="#4e6ef2"></uni-icons></td>
<td><input type="text" class="td_input" v-model="e.order_code"></td>
<td><input type="text" class="td_input" v-model="e.material_code"></td>
<td><input type="number" class="td_input" v-model="e.material_qty"></td>
</tr>
</tbody>
</table>
</view>
</view>
<view v-show="dataList.length > 0 && dataList[0].order_code.indexOf('OR') !== -1" class="zd_wrapper">
<view class="zd-row">
<view class="zd-col-7">
<span class="filter_label">下一道工序</span>
</view>
<view class="zd-col-17 filter_select">
<uni-data-select v-model="index1" :localdata="options1"></uni-data-select>
</view>
</view>
</view>
</view>
<view class="zd-row submit-bar">
<button class="zd-col-8 button-default" @tap="clearUp">清空</button>
<button class="zd-col-15 button-primary" :class="{'button-info': !val1 || !val2}" :disabled="disabled" @tap="_handheldBlanking">入库确认</button>
</view>
</view>
</template>
<script>
import NavBar from '@/components/NavBar.vue'
import SearchBox from '@/components/SearchBox.vue'
import {regionList, handheldBlanking} from '@/utils/getData2.js'
export default {
components: {
NavBar,
SearchBox
},
data() {
return {
title: '',
val1: '',
val2: '',
options: [{ value: '1', text: '货架' }, { value: '2', text: '内部' }, { value: '3', text: '外协' }],
index: '',
options1: [],
index1: '',
disabled: false,
dataList: [{order_code: '', material_code: '', material_qty: 0}]
};
},
onLoad (options) {
this.title = options.title
this._regionList()
},
methods: {
selectChange (e) {
this.dataList = [{order_code: '', material_code: '', material_qty: 0}]
this.index1 = ''
},
async _regionList () {
let res = await regionList()
this.options1 = [...res.content]
this.options1.map(el => {
this.$set(el, 'text', el.label)
})
},
addRow () {
this.dataList.push({order_code: '', material_code: '', material_qty: 0})
},
clearUp () {
this.val1 = ''
this.val2 = ''
this.index = ''
this.dataList = [{order_code: '', material_code: '', material_qty: 0}]
this.index1 = ''
this.disabled = false
},
async _handheldBlanking () {
this.disabled = true
if (!this.val1 || !this.val2) {
this.disabled = false
return
}
let arr = []
this.dataList.map(el => {
if (el.order_code !== '' && el.material_qty !== '') {
arr.push(el)
}
})
try {
let res = await handheldBlanking(this.index, this.val1, this.index1, this.val2, arr)
this.clearUp()
uni.showToast({
title: res.message,
icon: 'none'
})
} catch (e) {
this.disabled = false
}
}
}
}
</script>
<style lang="stylus">
</style>