2026-01-05 17:01:08 +08:00
|
|
|
<template>
|
|
|
|
|
<view class="zd_container">
|
2026-01-09 18:05:06 +08:00
|
|
|
<!-- 料桶叫料 -->
|
2026-01-05 17:01:08 +08:00
|
|
|
<nav-bar :title="title"></nav-bar>
|
|
|
|
|
<view class="zd_content">
|
|
|
|
|
<view class="zd_wrapper">
|
|
|
|
|
<view class="zd-row border-bottom">
|
|
|
|
|
<view class="zd-col-6">
|
|
|
|
|
<span class="filter_label">物料编码</span>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="zd-col-13">
|
|
|
|
|
<search-box v-model="materialData.material_code"/>
|
|
|
|
|
</view>
|
|
|
|
|
<button class="mini-btn" type="primary" @tap="toJump('material?title=物料维护')">查询</button>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="zd-row border-bottom">
|
|
|
|
|
<view class="zd-col-5">
|
|
|
|
|
<span class="filter_label">批号</span>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="zd-col-14 filter_select">
|
|
|
|
|
<search-box
|
|
|
|
|
v-model="val1"
|
|
|
|
|
/>
|
|
|
|
|
</view>
|
2026-01-09 18:05:06 +08:00
|
|
|
<button class="mini-btn" type="primary" @tap="_getBucketGroupInfo">查询</button>
|
2026-01-05 17:01:08 +08:00
|
|
|
</view>
|
|
|
|
|
<view class="zd-row border-bottom">
|
|
|
|
|
<view class="zd-col-7">
|
|
|
|
|
<span class="filter_label">要料点</span>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="zd-col-24 filter_select">
|
|
|
|
|
<search-box
|
2026-01-09 18:05:06 +08:00
|
|
|
v-model="val2"
|
2026-01-05 17:01:08 +08:00
|
|
|
/>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="zd_wrapper grid-wraper">
|
|
|
|
|
<view class="slide_new">
|
|
|
|
|
<table>
|
|
|
|
|
<thead>
|
|
|
|
|
<tr>
|
2026-01-19 17:13:56 +08:00
|
|
|
<th @tap="toAllCheck"><uni-icons :type="allCheck ? 'checkbox' : 'circle'" size="24" color="#4e6ef2"></uni-icons></th>
|
2026-01-05 17:01:08 +08:00
|
|
|
<th>序号</th>
|
|
|
|
|
<th>点位</th>
|
|
|
|
|
<th>物料编码</th>
|
|
|
|
|
<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">
|
2026-01-19 17:13:56 +08:00
|
|
|
<td @tap="toCheck(e)"><uni-icons :type="e.checked ? 'checkbox' : 'circle'" size="24" color="#4e6ef2"></uni-icons></td>
|
2026-01-05 17:01:08 +08:00
|
|
|
<td>{{i+1}}</td>
|
|
|
|
|
<td>{{e.struct_code}}</td>
|
|
|
|
|
<td>{{e.material_code}}</td>
|
|
|
|
|
<td>{{e.material_name}}</td>
|
|
|
|
|
<td>{{e.pcsn}}</td>
|
|
|
|
|
<td>{{e.qty}}</td>
|
|
|
|
|
<td>{{e.qty_unit_name}}</td>
|
|
|
|
|
<td>{{e.supp_name}}</td>
|
2026-01-22 10:31:29 +08:00
|
|
|
<td>{{e.class_name}}</td>
|
2026-01-05 17:01:08 +08:00
|
|
|
<td>{{e.vehicle_code}}</td>
|
|
|
|
|
</tr>
|
|
|
|
|
</tbody>
|
|
|
|
|
</table>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="zd-row submit-bar">
|
|
|
|
|
<button class="zd-col-5 button-default" @tap="toEmpty">清空</button>
|
2026-01-19 17:13:56 +08:00
|
|
|
<button class="zd-col-18 button-primary" :class="{'button-info': !val2 || !checkedArr.length}" :disabled="disabled" @tap="_confirmCallBucketMaterial">确认叫料</button>
|
2026-01-05 17:01:08 +08:00
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
import NavBar from '@/components/NavBar.vue'
|
|
|
|
|
import SearchBox from '@/components/SearchBox.vue'
|
2026-01-09 18:05:06 +08:00
|
|
|
import {getBucketGroupInfo, confirmCallBucketMaterial} from '@/utils/getData3.js'
|
2026-01-05 17:01:08 +08:00
|
|
|
export default {
|
|
|
|
|
components: {
|
|
|
|
|
NavBar,
|
|
|
|
|
SearchBox
|
|
|
|
|
},
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
|
|
|
|
title: '',
|
|
|
|
|
num: null,
|
|
|
|
|
val1: '',
|
2026-01-09 18:05:06 +08:00
|
|
|
val2: '',
|
2026-01-05 17:01:08 +08:00
|
|
|
materialData: {},
|
2026-01-19 17:13:56 +08:00
|
|
|
allCheck: false,
|
|
|
|
|
checkedArr: [],
|
2026-01-05 17:01:08 +08:00
|
|
|
dataList: [],
|
|
|
|
|
disabled: false
|
|
|
|
|
};
|
|
|
|
|
},
|
|
|
|
|
onLoad (options) {
|
|
|
|
|
this.title = options.title
|
2026-01-09 18:05:06 +08:00
|
|
|
},
|
|
|
|
|
onShow () {
|
|
|
|
|
if (this.$store.getters.publicObj !== '') {
|
|
|
|
|
this.materialData = this.$store.getters.publicObj
|
|
|
|
|
this.$store.dispatch('setPublicObj', '')
|
|
|
|
|
}
|
2026-01-05 17:01:08 +08:00
|
|
|
},
|
|
|
|
|
methods: {
|
|
|
|
|
toJump (name) {
|
|
|
|
|
uni.navigateTo({
|
|
|
|
|
url: `/pages/hdyy/wbc/${name}`
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
toEmpty () {
|
|
|
|
|
this.val1 = ''
|
2026-01-09 18:05:06 +08:00
|
|
|
this.val2 = ''
|
2026-01-05 17:01:08 +08:00
|
|
|
this.num = null
|
2026-01-19 17:13:56 +08:00
|
|
|
this.checkedArr = []
|
|
|
|
|
this.allCheck = false
|
2026-01-05 17:01:08 +08:00
|
|
|
this.dataList = []
|
|
|
|
|
this.disabled = false
|
|
|
|
|
},
|
2026-01-19 17:13:56 +08:00
|
|
|
toAllCheck () {
|
|
|
|
|
this.allCheck = !this.allCheck
|
|
|
|
|
this.dataList.map(el => {
|
|
|
|
|
el.checked = this.allCheck
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
toCheck (e) {
|
|
|
|
|
e.checked = !e.checked
|
|
|
|
|
this.checkedArr = this.dataList.filter(el => el.checked === true)
|
|
|
|
|
this.allCheck = this.checkedArr.length === this.dataList.length
|
|
|
|
|
},
|
2026-01-09 18:05:06 +08:00
|
|
|
async _getBucketGroupInfo () {
|
2026-01-05 17:01:08 +08:00
|
|
|
try {
|
2026-01-19 17:13:56 +08:00
|
|
|
let res = await getBucketGroupInfo(this.materialData.material_id, this.val1)
|
2026-01-05 17:01:08 +08:00
|
|
|
if (res && res.data.length > 0) {
|
|
|
|
|
this.dataList = [...res.data]
|
|
|
|
|
} else {
|
|
|
|
|
this.dataList = []
|
|
|
|
|
}
|
|
|
|
|
} catch (e) {
|
|
|
|
|
this.dataList = []
|
|
|
|
|
}
|
|
|
|
|
},
|
2026-01-09 18:05:06 +08:00
|
|
|
async _confirmCallBucketMaterial () {
|
2026-01-19 17:13:56 +08:00
|
|
|
this.checkedArr = this.dataList.filter(el => el.checked === true)
|
2026-01-05 17:01:08 +08:00
|
|
|
this.disabled = true
|
2026-01-19 17:13:56 +08:00
|
|
|
if (!this.val2 || !this.checkedArr.length) {
|
2026-01-05 17:01:08 +08:00
|
|
|
this.disabled = false
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
try {
|
2026-01-19 17:13:56 +08:00
|
|
|
let res = await confirmCallBucketMaterial(this.val2, this.checkedArr)
|
2026-01-05 17:01:08 +08:00
|
|
|
if (res) {
|
|
|
|
|
uni.showToast({
|
|
|
|
|
title: res.message,
|
|
|
|
|
icon: 'none'
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
this.toEmpty()
|
|
|
|
|
this.disabled = false
|
|
|
|
|
} catch (e) {
|
|
|
|
|
this.disabled = false
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</script>
|