<template>
|
<a-modal
|
title="选择零件号"
|
:width="500"
|
v-model="visible"
|
:confirmLoading="confirmLoading"
|
@ok="handleSubmit"
|
@cancel="handleCancel">
|
<a-spin :spinning="confirmLoading">
|
<a-form :form="form">
|
<a-form-item label="零件号" :labelCol="labelCol" :wrapperCol="wrapperCol">
|
<a-select style="width: 100%" placeholder="请选择零件号" v-decorator="['partNo', {rules: [{ required: true, message: '请选择零件号!' }]}]">
|
<a-select-option v-for="(item,index) in partNoData" :key="index" :value="item.code">{{ item.name }}</a-select-option>
|
</a-select>
|
</a-form-item>
|
</a-form>
|
</a-spin>
|
</a-modal>
|
</template>
|
|
<script>
|
import {
|
WmsPartList
|
} from '@/api/modular/main/WmsPartManage'
|
import { IexwarehouseManual, IexwarehouseAuto } from '@/api/modular/main/ExWarehouseManage'
|
export default {
|
data() {
|
return {
|
labelCol: {
|
xs: { span: 24 },
|
sm: { span: 5 }
|
},
|
wrapperCol: {
|
xs: { span: 24 },
|
sm: { span: 15 }
|
},
|
visible: false,
|
confirmLoading: false,
|
partNoData:[],
|
form: this.$form.createForm(this),
|
}
|
},
|
methods: {
|
//3.定义一个函数,通过设置detailvisible值为true来让弹窗弹出,这个函数会在父组件的方法中被调用
|
handle(data) {
|
this.visible = true
|
this.$nextTick(() => {
|
|
});
|
this.getPartNoData()
|
},
|
getPartNoData(){
|
WmsPartList().then(res => {
|
this.partNoData = res.data
|
})
|
},
|
handleSubmit () {
|
const { form: { validateFields } } = this
|
this.confirmLoading = true
|
validateFields((errors, values) => {
|
if (!errors) {
|
for (const key in values) {
|
if(values[key]==null){
|
values[key]=0
|
}
|
if (typeof (values[key]) === 'object') {
|
values[key] = JSON.stringify(values[key])
|
}
|
}
|
IexwarehouseAuto(values).then((res) => {
|
if (res.success) {
|
this.$message.success('出库成功')
|
this.confirmLoading = false
|
this.$emit('ok', values)
|
this.handleCancel()
|
} else {
|
this.$message.error('出库失败:' + JSON.stringify(res.message))
|
}
|
}).finally((res) => {
|
this.confirmLoading = false
|
})
|
} else {
|
this.confirmLoading = false
|
}
|
})
|
},
|
handleCancel () {
|
this.form.resetFields()
|
this.visible = false
|
}
|
},
|
}
|
</script>
|