<template>
|
<vol-box v-model="show" title="空托出库" :width="400" :height="600">
|
<template #content>
|
<el-form ref="form" :model="form" label-width="90px">
|
<el-form-item label="出库区域:">
|
<el-select v-model="locationType" placeholder="请选择出库区域">
|
<el-option v-for="item in locationTypes" :key="item.locationType" :label="item.locationTypeDesc.toString()" :value="item.locationType">
|
</el-option>
|
</el-select>
|
</el-form-item>
|
</el-form>
|
<el-form ref="form" :model="form" label-width="90px">
|
<el-form-item label="出库数量:">
|
<el-select v-model="num" placeholder="请选择出库数量">
|
<el-option v-for="item in 6" :key="item" :label="item.toString()" :value="item">
|
</el-option>
|
</el-select>
|
</el-form-item>
|
</el-form>
|
</template>
|
<template #footer>
|
<div>
|
<el-button type="danger" size="small" plain @click="submit">
|
<i class="el-icon-check">确认</i>
|
</el-button>
|
<el-button size="small" type="primary" plain @click="() => { this.show = false }">
|
<i class="el-icon-close">关闭</i>
|
</el-button>
|
</div>
|
</template>
|
</vol-box>
|
</template>
|
|
<script>
|
import VolBox from '@/components/basic/VolBox.vue'
|
export default {
|
components: {
|
'vol-box': VolBox
|
},
|
data() {
|
return {
|
num: 1,
|
show: false,
|
locationTypes: [],
|
locationType:"",
|
}
|
},
|
methods: {
|
open() {
|
this.show = true
|
this.getData();
|
},
|
submit() {
|
this.$emit('parentCall', ($vue) => {
|
this.http.post(`/api/Task/PalletOutboundTask?num=${this.num}&locationType=${this.locationType}`, {}, '数据处理中...')
|
.then((x) => {
|
if (!x.status) {
|
this.$message.error(x.message)
|
} else {
|
this.show = false
|
this.$Message.success(x.message)
|
$vue.refresh();
|
}
|
})
|
})
|
},
|
|
getData() {
|
this.http.post("api/LocationInfo/GetLocationTypes",null, "查询中")
|
.then((x) => {
|
this.locationTypes = x.data;
|
})
|
},
|
}
|
}
|
</script>
|