Files
hht-fujia-uni/pages/manage/rgjl.vue

181 lines
4.4 KiB
Vue
Raw Normal View History

2025-07-29 14:26:49 +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">
2025-07-31 10:56:10 +08:00
<span class="filter_label">出库库区</span>
2025-07-29 14:26:49 +08:00
</view>
2025-07-31 10:56:10 +08:00
<view class="zd-col-17 filter_select">
<uni-data-select v-model="index" :localdata="options"></uni-data-select>
2025-07-29 14:26:49 +08:00
</view>
</view>
<view class="zd-row border-bottom">
<view class="zd-col-7">
2025-07-31 10:56:10 +08:00
<span class="filter_label">物料查询</span>
2025-07-29 14:26:49 +08:00
</view>
2025-07-31 10:56:10 +08:00
<view class="zd-col-12">
<input type="text" class="filter_input" v-model="val2">
2025-07-29 14:26:49 +08:00
</view>
2025-07-31 10:56:10 +08:00
<button class="mini-btn" type="primary" size="mini" style="margin-right: 0" @tap="_linegetMaterialDtl">查询</button>
2025-07-29 14:26:49 +08:00
</view>
<view class="zd-row border-bottom">
<view class="zd-col-7">
2025-07-31 10:56:10 +08:00
<span class="filter_label">终点站点</span>
2025-07-29 14:26:49 +08:00
</view>
<view class="zd-col-17">
2025-07-31 10:56:10 +08:00
<search-box v-model="val1"/>
2025-07-29 14:26:49 +08:00
</view>
</view>
2025-08-15 10:36:42 +08:00
<view class="zd-row border-bottom">
<view class="zd-col-7">
<span class="filter_label">目的楼层</span>
</view>
<view class="zd-col-17 filter_select">
<uni-data-select v-model="index1" :localdata="options1"></uni-data-select>
</view>
</view>
2025-07-29 14:26:49 +08:00
</view>
<view class="zd_wrapper grid-wraper">
<view class="slide_new">
<table>
<thead>
<tr>
<th>库位</th>
<th>载具编码</th>
<th>物料名称</th>
<th>物料规格</th>
<th>物料编码</th>
2025-07-31 15:51:31 +08:00
<th>数量</th>
<th>单位</th>
2025-07-29 14:26:49 +08:00
</tr>
</thead>
<tbody>
<tr v-for="(e, i) in dataList" :key="i" @tap="toChek(e)" :class="{'checked': pkId === e.group_id}">
<td>{{e.struct_code}}</td>
<td>{{e.storagevehicle_code}}</td>
<td>{{e.material_name}}</td>
<td>{{e.material_spec}}</td>
<td>{{e.material_code}}</td>
2025-07-31 15:51:31 +08:00
<td>{{e.qty}}</td>
<td>{{e.qty_unit_name}}</td>
2025-07-29 14:26:49 +08:00
</tr>
</tbody>
</table>
</view>
</view>
</view>
<view class="zd-row submit-bar">
2025-07-31 10:56:10 +08:00
<button class="zd-col-6 button-default" @tap="clearUp">清空</button>
2025-08-15 10:36:42 +08:00
<button class="zd-col-16 button-primary" :class="{'button-info': !pkId || !val1 || !index1}" @tap="_callMaterialConfirm">确认</button>
2025-07-29 14:26:49 +08:00
</view>
</view>
</template>
<script>
import NavBar from '@/components/NavBar.vue'
import SearchBox from '@/components/SearchBox.vue'
2025-08-15 10:36:42 +08:00
import {getSect, getFloor, linegetMaterialDtl, callMaterialConfirm} from '@/utils/getData.js'
2025-07-29 14:26:49 +08:00
export default {
components: {
NavBar,
SearchBox
},
data() {
return {
title: '',
options: [],
index: '',
val1: '',
val2: '',
2025-08-15 10:36:42 +08:00
options1: [],
index1: '',
2025-07-29 14:26:49 +08:00
dataList: [],
pkId: '',
pkObj: {},
2025-07-31 10:56:10 +08:00
disabled: false
2025-07-29 14:26:49 +08:00
};
},
onLoad (options) {
this.title = options.title
},
created () {
2025-07-31 10:56:10 +08:00
this._getSect()
2025-07-29 14:26:49 +08:00
},
methods: {
2025-07-31 10:56:10 +08:00
async _getSect () {
2025-07-29 14:26:49 +08:00
try {
2025-07-31 10:56:10 +08:00
let res = await getSect()
2025-07-29 14:26:49 +08:00
if (res) {
2025-07-31 10:56:10 +08:00
this.options = [...res]
2025-07-29 14:26:49 +08:00
} else {
this.options =[]
}
} catch (e) {
this.options = []
}
},
2025-08-15 10:36:42 +08:00
async _getFloor () {
try {
let res = await getFloor()
if (res) {
this.options1 = [...res]
} else {
this.options1 =[]
}
} catch (e) {
this.options1 = []
}
},
2025-07-29 14:26:49 +08:00
async _linegetMaterialDtl () {
2025-07-31 10:56:10 +08:00
this.pkId = ''
try {
let res = await linegetMaterialDtl(this.index, this.val2)
if (res.status === '200') {
this.dataList = [...res.data]
} else {
this.dataList = []
}
} catch (e) {
this.dataList = []
2025-07-29 14:26:49 +08:00
}
},
toChek (e) {
this.pkId = this.pkId === e.group_id ? '' : e.group_id
this.pkObj = this.pkId === e.group_id ? e : {}
},
async _callMaterialConfirm () {
this.disabled = true
2025-08-15 10:36:42 +08:00
if (!this.pkId || !this.val1 || !this.index1) {
2025-07-29 14:26:49 +08:00
this.disabled = false
return
}
try {
2025-08-15 10:36:42 +08:00
let res = await callMaterialConfirm(this.val1, this.pkObj, this.index1)
2025-07-31 10:56:10 +08:00
if (res.status === '200') {
2025-07-29 14:26:49 +08:00
this.clearUp()
}
2025-07-31 10:56:10 +08:00
this.disabled = false
uni.showToast({
title: res.message,
icon: 'none'
})
2025-07-29 14:26:49 +08:00
} catch (e) {
this.disabled = false
}
},
clearUp () {
2025-07-31 10:56:10 +08:00
this.index = ''
2025-07-29 14:26:49 +08:00
this.val1 = ''
2025-07-31 10:56:10 +08:00
this.val2 = ''
2025-08-15 10:36:42 +08:00
this.index1 = ''
2025-07-29 14:26:49 +08:00
this.pkId = ''
this.pkObj = {}
this.dataList = []
}
}
}
</script>