<template>
|
<a-modal
|
title="编辑小车信息"
|
:width="900"
|
:visible="visible"
|
:confirmLoading="confirmLoading"
|
@ok="handleSubmit"
|
@cancel="handleCancel">
|
<a-spin :spinning="confirmLoading">
|
<a-form :form="form">
|
<a-form-item label="编号" :labelCol="labelCol" :wrapperCol="wrapperCol" has-feedback>
|
<a-input placeholder="请输入编号" disabled="false" v-decorator="['containercode', {rules: [{required: true, message: '请输入编号!'}]}]" />
|
</a-form-item>
|
<a-form-item label="类型" :labelCol="labelCol" :wrapperCol="wrapperCol" >
|
<a-select style="width: 100%" placeholder="请选择类型" v-decorator="['containerTypeCode', {rules: [{ required: true, message: '请选择类型!' }]}]" @change="clear()">
|
<a-select-option v-for="(item,index) in containertypeData" :key="index" :value="item.code">{{ item.name }}</a-select-option>
|
</a-select>
|
</a-form-item>
|
<a-form-item label="绑定库位" :labelCol="labelCol" :wrapperCol="wrapperCol">
|
<a-select style="width: 100%" placeholder="请选择绑定库位" v-decorator="['realLocationCode']" allow-clear="true" @focus="getPlaceData()">
|
<a-select-option v-for="(item,index) in placeData" :key="index" :value="item.locationno">{{ item.locationno }}</a-select-option>
|
</a-select>
|
</a-form-item>
|
<a-form-item v-show="false"><a-input v-decorator="['id']" /></a-form-item>
|
</a-form>
|
</a-spin>
|
</a-modal>
|
</template>
|
|
<script>
|
import {
|
WmsContainerEdit
|
} from '@/api/modular/main/WmsContainerManage'
|
import {
|
ContainerTypeList
|
} from '@/api/modular/main/WmsContainerTypeManage'
|
import {
|
WmsEmptyPlaceList
|
} from '@/api/modular/main/WmsPlaceManage'
|
export default {
|
data () {
|
return {
|
Id: 0,
|
labelCol: {
|
xs: { span: 24 },
|
sm: { span: 5 }
|
},
|
wrapperCol: {
|
xs: { span: 24 },
|
sm: { span: 15 }
|
},
|
record: {},
|
containertypeData: [],
|
isemptycontainerData: [],
|
visible: false,
|
confirmLoading: false,
|
form: this.$form.createForm(this),
|
placeData:[]
|
}
|
},
|
methods: {
|
// 初始化方法
|
edit (record) {
|
this.visible = true;
|
this.Id = record.id;
|
this.$nextTick(() => {
|
});
|
//深度拷贝 移除VUE的监听,防止INDEX页面值变动
|
this.record = JSON.parse(JSON.stringify(record))
|
const containertypeOption = this.$options
|
//this.containertypeData = containertypeOption.filters['dictData']('container_type')
|
const containerstatusOption = this.$options
|
this.containerstatusData = containerstatusOption.filters['dictData']('container_status')
|
const isemptycontainerOption = this.$options
|
this.isemptycontainerData = isemptycontainerOption.filters['dictData']('yes_or_no')
|
this.getContainerType()
|
this.getPlaceData()
|
this.$nextTick(() => {
|
this.form.setFieldsValue(
|
{
|
id: record.id,
|
containercode: record.containercode,
|
containertype: record.containertype,
|
speclength: record.speclength,
|
specwidth: record.specwidth,
|
specheight: record.specheight,
|
limitlength: record.limitlength,
|
limitwidth: record.limitwidth,
|
limitheight: record.limitheight,
|
maxweight: record.maxweight,
|
isemptycontainer: record.isemptycontainer,
|
containerTypeCode:record.containerTypeCode,
|
realLocationCode:record.realLocationCode
|
}
|
)
|
})
|
},
|
clear()
|
{
|
this.form.setFieldsValue(
|
{
|
realLocationCode:""
|
})
|
},
|
getContainerType()
|
{
|
ContainerTypeList().then(res => {
|
this.containertypeData = res.data
|
})
|
},
|
getPlaceData()
|
{
|
let str = this.form.getFieldValue('containerTypeCode')
|
let parm = {containerTypeCode:str}
|
WmsEmptyPlaceList(parm).then(res => {
|
this.placeData = res.data
|
})
|
},
|
handleSubmit () {
|
const { form: { validateFields } } = this
|
this.confirmLoading = true
|
validateFields((errors, values) => {
|
if (!errors) {
|
for (const key in values) {
|
if (values[key] == null) continue
|
if (typeof (values[key]) === 'object') {
|
values[key] = JSON.stringify(values[key])
|
this.record[key] = values[key]
|
} else {
|
this.record[key] = values[key]
|
}
|
}
|
WmsContainerEdit(this.record).then((res) => {
|
if (res.success) {
|
this.$message.success('编辑成功')
|
this.confirmLoading = false
|
this.$emit('ok', this.record)
|
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>
|