Files
hht-hdyy-uni/pages/hdyy/wbc/wbc-enter.vue

172 lines
4.4 KiB
Vue
Raw Normal View History

2025-12-31 14:32:55 +08:00
<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-24 filter_select">
<search-box
v-model="val1"
2026-01-09 10:19:19 +08:00
@handleChange="handleChange"
2025-12-31 14:32:55 +08:00
/>
</view>
</view>
<view class="zd-row border-bottom">
<view class="zd-col-7">
2026-01-08 10:57:11 +08:00
<span class="filter_label filter_input_disabled">总数量</span>
2025-12-31 14:32:55 +08:00
</view>
<view class="zd-col-24">
<input type="number" v-model="num" class="filter_input filter_input_disabled" disabled>
</view>
</view>
<view class="zd-row border-bottom">
<view class="zd-col-6">
<span class="filter_label">目的点位</span>
</view>
<view class="zd-col-18 filter_select">
<uni-data-select v-model="index" :localdata="options"></uni-data-select>
</view>
</view>
</view>
<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>
</tr>
</thead>
<tbody>
<tr v-for="(e, i) in dataList" :key="i">
<td>{{i+1}}</td>
<td>{{e.material_code}}</td>
<td>{{e.material_name}}</td>
<td>{{e.pcsn}}</td>
<td>{{e.qty}}</td>
2026-01-08 10:56:44 +08:00
<td>{{e.unit_name}}</td>
2025-12-31 14:32:55 +08:00
</tr>
</tbody>
</table>
</view>
</view>
</view>
<view class="zd-row submit-bar">
<button class="zd-col-5 button-default" @tap="toEmpty">清空</button>
2026-04-03 10:44:35 +08:00
<button class="zd-col-18 button-primary" :class="{'button-info': !val1 || !index || !dataList.length}" :disabled="disabled" @tap="handleSubmit">送入</button>
2025-12-31 14:32:55 +08:00
</view>
2026-04-03 10:44:35 +08:00
<!-- 放置弹窗组件 -->
<CredentialPopup ref="credentialPopup" />
2025-12-31 14:32:55 +08:00
</view>
</template>
<script>
import NavBar from '@/components/NavBar.vue'
import SearchBox from '@/components/SearchBox.vue'
import {queryPointInDownload, queryPointInDtl, packInConfirm} from '@/utils/getData3.js'
export default {
components: {
NavBar,
SearchBox
},
data() {
return {
title: '',
options: [],
num: null,
index: '',
val1: '',
dataList: [],
2026-01-08 10:57:11 +08:00
// dataList: [{material_code: 'm001', qty: 100, checked: false, initialQty: 100}, {material_code: 'm002', qty: 200, checked: false, initialQty: 200}],
2025-12-31 14:32:55 +08:00
disabled: false
};
},
onLoad (options) {
this.title = options.title
this._queryPointInDownload()
},
methods: {
2026-04-03 10:44:35 +08:00
async handleSubmit() {
if (!this.val1 || !this.index || !this.dataList.length) {
this.disabled = false
return
}
try {
// 显示弹窗,等待用户输入
const { username, password } = await this.$refs.credentialPopup.show();
// 调用原接口,传入账号密码
this._packInConfirm(username, password);
} catch (error) {
// 用户取消,不做处理
console.log('用户取消输入');
}
},
2025-12-31 14:32:55 +08:00
toEmpty () {
this.val1 = ''
this.num = null
this.dataList = []
this.checkedArr = []
this.allCheck = false
this.disabled = false
},
async _queryPointInDownload () {
try {
let res = await queryPointInDownload()
if (res) {
this.options = res.data
} else {
this.options = []
}
} catch (e) {
this.options = []
}
},
selectChange (e) {
this.index = e
},
2026-01-09 10:19:19 +08:00
handleChange (e) {
if (e) {
this._queryPointInDtl()
}
},
2025-12-31 14:32:55 +08:00
async _queryPointInDtl () {
try {
let res = await queryPointInDtl(this.val1)
if (res && res.data.length > 0) {
this.dataList = [...res.data]
2026-01-09 10:19:19 +08:00
this.num = this.dataList.reduce((sum, item) => sum + Number(item.qty), 0)
2025-12-31 14:32:55 +08:00
} else {
this.dataList = []
}
} catch (e) {
this.dataList = []
}
},
2026-04-03 10:44:35 +08:00
async _packInConfirm (username, password) {
2025-12-31 14:32:55 +08:00
this.disabled = true
this.num = this.dataList.reduce((sum, item) => sum + Number(item.qty), 0)
try {
2026-04-03 10:44:35 +08:00
let res = await packInConfirm(username, password, this.val1, this.index, this.num, this.dataList)
2025-12-31 14:32:55 +08:00
if (res) {
uni.showToast({
title: res.message,
icon: 'none'
})
}
this.toEmpty()
this.disabled = false
} catch (e) {
this.disabled = false
}
}
}
}
</script>