Files
hht-zzzw-uni/pages/zw/ll-instore.vue

225 lines
6.0 KiB
Vue
Raw Normal View History

2025-08-05 18:15:31 +08:00
<template>
<view class="zd_container">
<!-- 来料入库 -->
<nav-bar :title="title"></nav-bar>
<view class="zd_content">
2025-08-06 10:07:38 +08:00
<view class="zd_wrapper" v-if="flag">
<view class="zd-row border-bottom">
<view class="zd-col-7">
<span class="filter_label filter_input_disabled">载具编码</span>
2025-08-05 18:15:31 +08:00
</view>
2025-08-06 10:07:38 +08:00
<view class="zd-col-17">
<input type="text" class="filter_input filter_input_disabled" v-model="currentData.storagevehicle_code" disabled>
</view>
</view>
<view class="zd-row border-bottom">
<view class="zd-col-7">
<span class="filter_label filter_input_disabled">物料编码</span>
</view>
<view class="zd-col-17">
<input type="text" class="filter_input filter_input_disabled" v-model="currentData.material_code" disabled>
</view>
</view>
<view class="zd-row border-bottom">
<view class="zd-col-7">
<span class="filter_label filter_input_disabled">物料名称</span>
</view>
<view class="zd-col-17">
<input type="text" class="filter_input filter_input_disabled" v-model="currentData.material_name" disabled>
</view>
</view>
<view class="zd-row border-bottom">
<view class="zd-col-7">
<span class="filter_label filter_input_disabled">批次</span>
</view>
<view class="zd-col-17">
<input type="text" class="filter_input filter_input_disabled" v-model="currentData.pcsn" disabled>
</view>
</view>
<view class="zd-row border-bottom">
<view class="zd-col-7">
<span class="filter_label filter_input_disabled">可用数</span>
</view>
<view class="zd-col-17">
<input type="text" class="filter_input filter_input_disabled" v-model="currentData.qty" disabled>
2025-08-05 18:15:31 +08:00
</view>
</view>
</view>
<view class="zd_wrapper grid-wraper">
<view class="slide_new">
<table>
<thead>
<tr>
2026-02-24 17:14:02 +08:00
<th @tap="toAllCheck"><uni-icons :type="allCheck ? 'checkbox' : 'circle'" size="24" color="#4e6ef2"></uni-icons></th>
2025-08-05 18:15:31 +08:00
<th>点位码</th>
2025-09-08 17:48:45 +08:00
<th>托盘码</th>
2025-10-21 13:31:10 +08:00
<th>批次号</th>
<th>物料类型</th>
2025-09-08 17:48:45 +08:00
<th>物料编码</th>
<th>重量</th>
<th>单据</th>
2025-08-05 18:15:31 +08:00
</tr>
</thead>
<tbody>
2025-09-08 17:48:45 +08:00
<!-- <tr v-for="(e, i) in dataList" :key="i" @tap="toChek(e)" :class="{'checked': pkId === e.site_code}"> -->
2025-08-12 13:11:53 +08:00
<tr v-for="(e, i) in dataList" :key="i">
2025-08-06 10:07:38 +08:00
<td @tap="toCheck(e)"><uni-icons :type="e.checked ? 'checkbox' : 'circle'" size="24" color="#4e6ef2"></uni-icons></td>
2025-08-05 18:15:31 +08:00
<td>{{e.site_code}}</td>
2025-09-08 17:48:45 +08:00
<td>{{e.vehicle_code}}</td>
2025-10-21 13:31:10 +08:00
<td>{{e.pcsn}}</td>
<td>{{e.material_model}}</td>
2025-09-08 17:48:45 +08:00
<td>{{e.material_code}}</td>
<td>{{e.qty}}</td>
2025-09-16 10:13:01 +08:00
<td>{{e.form_data_code}}</td>
2025-08-05 18:15:31 +08:00
</tr>
</tbody>
</table>
</view>
</view>
</view>
2026-02-24 17:14:02 +08:00
2025-08-05 18:15:31 +08:00
<view class="zd-row submit-bar">
2026-02-24 17:14:02 +08:00
<button class="zd-col-11 button-primary" @tap="_getInBillList">刷新</button>
<button class="zd-col-11 button-primary" :class="{'button-info': !checkedArr.length}" @tap="_zwConfirmIn">提交</button>
2025-08-05 18:15:31 +08:00
</view>
</view>
</template>
<script>
import NavBar from '@/components/NavBar.vue'
import SearchBox from '@/components/SearchBox.vue'
2026-02-24 16:47:47 +08:00
import {getFormDataList, getPlate, getInBillList, zwConfirmIn} from '@/utils/getData4.js'
2025-08-05 18:15:31 +08:00
export default {
components: {
NavBar,
SearchBox
},
data() {
return {
title: '',
id: '',
code: '',
2025-09-08 17:48:45 +08:00
pkId: '',
pkObj: {},
2025-09-12 11:01:46 +08:00
dataList: [],
// dataList: [
// {site_code: 's01', vehicle_code: 'v01', checked: false},
// {site_code: 's04', vehicle_code: 'v04', checked: false}
// ],
2026-02-24 17:14:02 +08:00
allCheck: false,
2025-08-12 13:11:53 +08:00
checkedArr: [],
2025-08-05 18:15:31 +08:00
pkId: '',
2025-08-06 10:07:38 +08:00
currentData: {},
flag: false,
2025-08-05 18:15:31 +08:00
disabled: false
};
},
onLoad (options) {
this.title = options.title
this.id = options.id
},
created () {
2026-02-24 16:47:47 +08:00
this._getInBillList()
2025-08-05 18:15:31 +08:00
},
methods: {
2025-09-08 17:48:45 +08:00
// async _getPlate () {
// try {
// let res = await getPlate(this.val1)
// if (res.code === '200') {
// this.flag = true
// this.currentData = res.data
// setTimeout(() => {
// this.flag = false
// },1000)
// this.handleAdd()
// } else {
// uni.showToast({
// title: res.message,
// icon: 'none'
// })
// }
// } catch (e) {
// }
// },
toChek (e) {
this.pkId = this.pkId === e.site_code ? '' : e.site_code
this.pkObj = this.pkId === e.site_code ? e : {}
2025-08-21 14:39:09 +08:00
},
2026-02-24 17:14:02 +08:00
toAllCheck () {
this.allCheck = !this.allCheck
this.dataList.map(el => {
el.checked = this.allCheck
})
},
toAllCheck () {
this.allCheck = !this.allCheck
this.dataList.map(el => {
el.checked = this.allCheck
})
},
2025-08-06 10:07:38 +08:00
toCheck (e) {
e.checked = !e.checked
2025-08-12 13:11:53 +08:00
this.checkedArr = this.dataList.filter(el => el.checked === true)
2026-02-24 17:14:02 +08:00
this.allCheck = this.checkedArr.length === this.dataList.length
2025-08-05 18:15:31 +08:00
},
clearUp () {
2025-08-12 13:11:53 +08:00
this.dataList = []
this.checkedArr = []
2025-08-05 18:15:31 +08:00
},
2026-02-24 16:47:47 +08:00
async _getInBillList () {
2026-02-24 17:14:02 +08:00
this.toAllCheck()
2025-08-21 14:39:09 +08:00
try {
2026-02-24 16:47:47 +08:00
let res = await getInBillList()
2025-08-21 14:39:09 +08:00
if (res.code === '200') {
2026-02-24 17:14:02 +08:00
this.dataList = [...res.data]
this.allCheck = true
this.dataList.map(el => {
el.checked = this.allCheck
})
2025-08-21 14:39:09 +08:00
} else {
uni.showToast({
title: res.message,
icon: 'none'
})
}
} catch (e) {
}
},
2025-08-05 18:15:31 +08:00
async _zwConfirmIn () {
this.disabled = true
2026-02-24 16:47:47 +08:00
if (!this.checkedArr.length) {
2025-08-05 18:15:31 +08:00
this.disabled = false
return
}
try {
2026-02-24 16:47:47 +08:00
let res = await zwConfirmIn(this.checkedArr)
2025-08-05 18:15:31 +08:00
if (res.code === '200') {
uni.showToast({
title: res.message,
icon: 'none'
})
this.clearUp()
} else {
uni.showToast({
title: res.message,
icon: 'none'
})
this.disabled = false
}
} catch (e) {
this.disabled = false
}
}
}
}
</script>
2025-08-12 13:11:53 +08:00
<style lang="stylus" scoped>
.checked
background #ffffff
.slide_new table tr.checked td {
// background-color: transparent;
// color: #fff;
}
</style>