128 lines
2.9 KiB
Vue
128 lines
2.9 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-7">
|
||
<span class="filter_label">源单编码</span>
|
||
</view>
|
||
<view class="zd-col-17">
|
||
<search-box v-model="val1"/>
|
||
</view>
|
||
</view>
|
||
<view class="zd-row border-bottom">
|
||
<view class="zd-col-7">
|
||
<span class="filter_label">载具编码</span>
|
||
</view>
|
||
<view class="zd-col-17">
|
||
<search-box v-model="val2"/>
|
||
</view>
|
||
</view>
|
||
<view class="zd-row border-bottom">
|
||
<view class="zd-col-7">
|
||
<span class="filter_label">物料信息</span>
|
||
</view>
|
||
<view class="zd-col-17">
|
||
<input type="text" class="filter_input" v-model="wlxxtext" @tap="toJump">
|
||
</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>{{e.material_name}}</td>
|
||
<td>{{e.material_code}}</td>
|
||
<td>{{e.qty}}</td>
|
||
<td>{{e.pcsn}}</td>
|
||
</tr>
|
||
</tbody>
|
||
</table>
|
||
</view>
|
||
</view>
|
||
</view>
|
||
<view class="zd-row submit-bar">
|
||
<button class="zd-col-6 button-default" @tap="toEmpty">清空</button>
|
||
<button class="zd-col-16 button-primary" :class="{'button-info': !this.val2 || !this.dataList.length}" :disabled="disabled" @tap="_groupPlate">组盘确认</button>
|
||
</view>
|
||
</view>
|
||
</template>
|
||
|
||
<script>
|
||
import NavBar from '@/components/NavBar.vue'
|
||
import SearchBox from '@/components/SearchBox.vue'
|
||
import NumberInput from '@/components/NumberInput.vue'
|
||
import {groupPlate} from '@/utils/getData3.js'
|
||
export default {
|
||
components: {
|
||
NavBar,
|
||
SearchBox,
|
||
NumberInput
|
||
},
|
||
data() {
|
||
return {
|
||
title: '',
|
||
val1: '',
|
||
val2: '',
|
||
val3: '',
|
||
wlxxtext: '',
|
||
dataList: [],
|
||
options: [],
|
||
index: '',
|
||
disabled: false
|
||
};
|
||
},
|
||
onLoad (options) {
|
||
this.title = options.title
|
||
},
|
||
onShow() {
|
||
if (this.$store.getters.publicArr.length) {
|
||
this.dataList = this.$store.getters.publicArr
|
||
}
|
||
},
|
||
methods: {
|
||
toJump () {
|
||
uni.navigateTo({
|
||
url: '/pages/common/mater-list?title=查询物料'
|
||
})
|
||
},
|
||
toEmpty () {
|
||
this.dataList = []
|
||
this.index = ''
|
||
this.disabled = false
|
||
},
|
||
async _groupPlate () {
|
||
this.disabled = true
|
||
if (!this.val2 || !this.dataList.length) {
|
||
this.disabled = false
|
||
return
|
||
}
|
||
try {
|
||
let res = await groupPlate(this.dataList, this.val2, this.val1)
|
||
uni.showToast({
|
||
title: res.message,
|
||
icon: 'none'
|
||
})
|
||
this.disabled = false
|
||
} catch (e) {
|
||
this.disabled = false
|
||
}
|
||
}
|
||
}
|
||
}
|
||
</script>
|
||
|
||
<style lang="stylus">
|
||
</style>
|