142 lines
3.3 KiB
Vue
142 lines
3.3 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-8">
|
|
<span class="filter_label">产线站点编号</span>
|
|
</view>
|
|
<view class="zd-col-16">
|
|
<search-box
|
|
v-model="val1"
|
|
/>
|
|
</view>
|
|
</view>
|
|
<view class="zd-row">
|
|
<view class="zd-col-8">
|
|
<span class="filter_label">单据编码</span>
|
|
</view>
|
|
<view class="zd-col-16">
|
|
<search-box
|
|
v-model="val2"
|
|
/>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="zd_wrapper grid-wraper">
|
|
<view class="slide_new">
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th>选择</th>
|
|
<th class="td_3"><view class="td_3">物料名称</view></th>
|
|
<th>物料编码</th>
|
|
<th>数量</th>
|
|
<th>批次号</th>
|
|
<th>单位</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr v-for="(e, i) in dataList" :key="i">
|
|
<td @tap="toCheck(e)"><uni-icons :type="e.checked ? 'checkbox' : 'circle'" size="24" color="#4e6ef2"></uni-icons></td>
|
|
<td class="td_3">{{e.material_name}}</td>
|
|
<td>{{e.material_code}}</td>
|
|
<td>{{e.qty}}</td>
|
|
<td>{{e.pcsn}}</td>
|
|
<td>{{e.unit_id}}</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="zd-row submit-bar">
|
|
<button class="zd-col-6 button-primary" @tap="_getCtuOrderList">查询</button>
|
|
<button class="zd-col-16 button-primary" :class="{'button-info': checkData.length === 0}" :disabled="disabled" @tap="_ctuOutConfirm">确认</button>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
import NavBar from '@/components/NavBar.vue'
|
|
import SearchBox from '@/components/SearchBox.vue'
|
|
import {getCtuOrderList, ctuOutConfirm} from '@/utils/getData2.js'
|
|
export default {
|
|
components: {
|
|
NavBar,
|
|
SearchBox
|
|
},
|
|
data() {
|
|
return {
|
|
title: '',
|
|
val1: '',
|
|
val2: '',
|
|
dataList: [],
|
|
disabled: false,
|
|
checkData: []
|
|
};
|
|
},
|
|
onLoad (options) {
|
|
this.title = options.title
|
|
},
|
|
methods: {
|
|
async _getCtuOrderList () {
|
|
try {
|
|
let res = await getCtuOrderList(this.val1, this.val2)
|
|
if (res.code === '200') {
|
|
this.checkData = []
|
|
if (res.content.length > 0) {
|
|
this.dataList = [...res.content]
|
|
this.dataList.map(el => {
|
|
this.$set(el, 'checked', false)
|
|
})
|
|
}
|
|
} else {
|
|
uni.showToast({
|
|
title: res.msg,
|
|
icon: 'none'
|
|
})
|
|
}
|
|
} catch (e) {
|
|
console.log(e)
|
|
}
|
|
},
|
|
toCheck (e) {
|
|
e.checked = !e.checked
|
|
let arr = this.dataList.filter(el => el.checked === true)
|
|
if (arr.length > 9) {
|
|
uni.showToast({
|
|
title: '最多只能选择9个物料',
|
|
icon: 'none'
|
|
})
|
|
e.checked = false
|
|
arr = this.dataList.filter(el => el.checked === true)
|
|
}
|
|
this.checkData = arr
|
|
},
|
|
async _ctuOutConfirm () {
|
|
this.disabled = true
|
|
if (this.checkData.length === 0) {
|
|
this.disabled = false
|
|
return
|
|
}
|
|
try {
|
|
let res = await ctuOutConfirm(this.val1, this.val2, this.checkData)
|
|
if (res.code === '200') {
|
|
this._getCtuOrderList()
|
|
}
|
|
this.disabled = false
|
|
uni.showToast({
|
|
title: res.msg,
|
|
icon: 'none'
|
|
})
|
|
} catch (e) {
|
|
this.disabled = false
|
|
}
|
|
}
|
|
}
|
|
}
|
|
</script>
|