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

175 lines
4.6 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">
2025-09-12 13:13:29 +08:00
<view>
<view class="filter_label">{{$t('label.OutWarehouseArea')}}</view>
<view class="filter_select">
<uni-data-select :placeholder="$t('utils.selectPlaceholder')" :emptyTips="$t('utils.selectEmptyTips')" v-model="index" :localdata="options"></uni-data-select>
2025-07-29 14:26:49 +08:00
</view>
</view>
2025-09-12 13:13:29 +08:00
<view>
<view class="filter_label">{{$t('label.MaterialInquiry')}}</view>
<view class="zd-row">
<view class="zd-col-18">
<input type="text" class="filter_input" v-model="val2">
</view>
<button class="mini-btn" type="primary" size="mini" style="margin-right: 0" @tap="_linegetMaterialDtl">{{$t('button.search')}}</button>
2025-07-29 14:26:49 +08:00
</view>
</view>
2025-09-12 13:13:29 +08:00
<view class="is-required">
<view class="filter_label">{{$t('label.EndPosition')}}</view>
<search-box v-model="val1"/>
2025-07-29 14:26:49 +08:00
</view>
2025-09-12 13:13:29 +08:00
<view class="is-required">
<view class="filter_label">{{$t('label.DestinationFloor')}}</view>
<view class="filter_select">
<uni-data-select :placeholder="$t('utils.selectPlaceholder')" :emptyTips="$t('utils.selectEmptyTips')" v-model="index1" :localdata="options1"></uni-data-select>
2025-08-15 10:36:42 +08:00
</view>
</view>
2025-07-29 14:26:49 +08:00
</view>
<view class="zd_wrapper grid-wraper">
<view class="slide_new">
<table>
<thead>
<tr>
2025-09-12 13:13:29 +08:00
<th>{{$t('th.WarehouseLocation')}}</th>
<th>{{$t('label.CarrierCode')}}</th>
<th>{{$t('label.MaterialName')}}</th>
<th>{{$t('label.MaterialSpecification')}}</th>
<th>{{$t('label.MaterialCode')}}</th>
<th>{{$t('th.Quantity')}}</th>
<th>{{$t('th.Unit')}}</th>
2025-07-29 14:26:49 +08:00
</tr>
</thead>
<tbody>
2025-09-25 17:39:07 +08:00
<tr v-for="(e, i) in dataList" :key="i" @tap="toChek(e)" :class="{'checked': e.checked}">
2025-07-29 14:26:49 +08:00
<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-09-12 13:13:29 +08:00
<button class="zd-col-6 button-default" @tap="clearUp">{{$t('button.clear')}}</button>
2025-09-25 17:39:07 +08:00
<button class="zd-col-16 button-primary" :class="{'button-info': allChecked.length === 0 || !val1 || !index1}" @tap="_callMaterialConfirm">{{$t('button.confirm')}}</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: [],
2025-09-25 17:39:07 +08:00
allChecked: [],
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-08-19 16:16:32 +08:00
this._getFloor()
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-09-25 17:39:07 +08:00
this.allChecked = []
2025-07-31 10:56:10 +08:00
try {
let res = await linegetMaterialDtl(this.index, this.val2)
if (res.status === '200') {
this.dataList = [...res.data]
2025-09-25 17:39:07 +08:00
this.dataList.map(el => {
this.$set(el, 'checked', false)
})
2025-07-31 10:56:10 +08:00
} else {
this.dataList = []
}
} catch (e) {
this.dataList = []
2025-07-29 14:26:49 +08:00
}
},
toChek (e) {
2025-09-25 17:39:07 +08:00
e.checked = !e.checked
this.allChecked = this.dataList.filter(el => el.checked === true)
2025-07-29 14:26:49 +08:00
},
async _callMaterialConfirm () {
this.disabled = true
2025-09-25 17:39:07 +08:00
if (!this.allChecked.length === 0 || !this.val1 || !this.index1) {
2025-07-29 14:26:49 +08:00
this.disabled = false
return
}
try {
2025-09-25 17:39:07 +08:00
let res = await callMaterialConfirm(this.val1, this.allChecked, 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-09-25 17:39:07 +08:00
this.allChecked = []
2025-07-29 14:26:49 +08:00
this.dataList = []
}
}
}
</script>