157 lines
4.0 KiB
Vue
157 lines
4.0 KiB
Vue
<template>
|
|
<view class="zd_container">
|
|
<!-- 仓库送料 -->
|
|
<nav-bar :title="title"></nav-bar>
|
|
<view class="zd_content">
|
|
<view class="zd_wrapper grid-wraper">
|
|
<view class="slide_new">
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th>无人车点位</th>
|
|
<th>物料编码</th>
|
|
<th>物料名称</th>
|
|
<th>批号</th>
|
|
<th>数量</th>
|
|
<th>计量单位</th>
|
|
<th>操作</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr v-for="(e, i) in dataList" :key="i">
|
|
<td>{{e.point_code}}</td>
|
|
<td>{{e.material_code}}</td>
|
|
<td>{{e.material_name}}</td>
|
|
<td><input type="text" class="sin_input" v-model="e.pcsn"></td>
|
|
<td><input type="number" class="sin_input" v-model="e.qty" @blur="handleBlur(e)"></td>
|
|
<td>{{e.unit_name}}</td>
|
|
<td style="color: #4e6ef2;" @tap="toDel(e)">删除</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="zd-row submit-bar">
|
|
<button class="zd-col-7 button-primary" :disabled="disabled" @tap="_callCarIos">呼叫无人车</button>
|
|
<button class="zd-col-7 button-primary" @tap="toZh">装货</button>
|
|
<button class="zd-col-7 button-primary" :class="{'button-info': !dataList.length}" :disabled="disabled" @tap="_sendTask">确认送料</button>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
import NavBar from '@/components/NavBar.vue'
|
|
import SearchBox from '@/components/SearchBox.vue'
|
|
import {callCarIos, sendTask} from '@/utils/getData3.js'
|
|
export default {
|
|
components: {
|
|
NavBar,
|
|
SearchBox
|
|
},
|
|
data() {
|
|
return {
|
|
title: '',
|
|
pointCode: '',
|
|
dataList: [],
|
|
// dataList: [{material_code: 'm001', qty: 100, checked: false, initialQty: 100}, {material_code: 'm002', qty: 200, checked: false, initialQty: 200}],
|
|
disabled: false
|
|
};
|
|
},
|
|
onLoad (options) {
|
|
this.title = options.title
|
|
},
|
|
onShow () {
|
|
this.pointCode = this.$store.getters.publicObj
|
|
if (this.$store.getters.publicArr.length) {
|
|
const newItems = this.$store.getters.publicArr;
|
|
const existingCodes = new Set(this.dataList.map(item => item.material_code));
|
|
newItems.forEach(item => {
|
|
// 若物料编码不存在于现有集合中,则添加
|
|
if (!existingCodes.has(item.material_code)) {
|
|
item.point_code = this.pointCode
|
|
item.pcsn = ''
|
|
item.qty = ''
|
|
this.dataList.push(item)
|
|
existingCodes.add(item.material_code)
|
|
}
|
|
});
|
|
this.$store.dispatch('setPublicArr', '')
|
|
console.log(90)
|
|
}
|
|
},
|
|
methods: {
|
|
handleBlur (e) {
|
|
if (e.qty) {
|
|
if (e.qty < 0) {
|
|
e.qty = 0
|
|
} else {
|
|
e.qty = e.qty.replace(/[^0-9]/g, '')
|
|
e.qty = e.qty.replace(/^0+/, '') || '0'
|
|
}
|
|
} else {
|
|
// uni.showToast({
|
|
// title: '数量必填',
|
|
// icon: 'none'
|
|
// })
|
|
}
|
|
},
|
|
toDel (e) {
|
|
const index = this.dataList.indexOf(e)
|
|
if (index !== -1) {
|
|
this.dataList.splice(index, 1); // 直接修改原数组,视图自动更新
|
|
}
|
|
},
|
|
toEmpty () {
|
|
this.dataList = []
|
|
this.disabled = false
|
|
},
|
|
toZh () {
|
|
uni.navigateTo({
|
|
url: '/pages/hdyy/wrcdj/cksl-matersave?title=物料维护'
|
|
})
|
|
},
|
|
async _callCarIos () {
|
|
this.disabled = true
|
|
try {
|
|
let res = await callCarIos()
|
|
if (res) {
|
|
uni.showToast({
|
|
title: res.message,
|
|
icon: 'none'
|
|
})
|
|
}
|
|
this.toEmpty()
|
|
this.disabled = false
|
|
} catch (e) {
|
|
this.disabled = false
|
|
}
|
|
},
|
|
async _sendTask () {
|
|
const hasEmpty = this.dataList.some(item => item.pcsn === '' || item.qty === '');
|
|
if (hasEmpty) {
|
|
uni.showToast({
|
|
title: '请填写批号和数量',
|
|
icon: 'none'
|
|
})
|
|
return false
|
|
}
|
|
console.log(this.dataList, 666)
|
|
this.disabled = true
|
|
try {
|
|
let res = await sendTask(this.dataList)
|
|
if (res) {
|
|
uni.showToast({
|
|
title: res.message,
|
|
icon: 'none'
|
|
})
|
|
}
|
|
this.toEmpty()
|
|
this.disabled = false
|
|
} catch (e) {
|
|
this.disabled = false
|
|
}
|
|
}
|
|
}
|
|
}
|
|
</script> |