<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="请输入工件号" v-decorator="['workPieceID', {rules: [{required: true, message: '请输入工件号!'}]}]" />
|
</a-form-item>
|
<a-form-item label="OP80成品码" :labelCol="labelCol" :wrapperCol="wrapperCol" has-feedback>
|
<a-input placeholder="请输入OP80成品码" v-decorator="['oP80NewCode', {rules: [{required: true, message: '请输入OP80成品码!'}]}]" />
|
</a-form-item>
|
<a-form-item label="出库时间" :labelCol="labelCol" :wrapperCol="wrapperCol" has-feedback>
|
<a-date-picker style="width: 100%" placeholder="请选择出库时间" v-decorator="['workPieceOutboundTime',{rules: [{ required: true, message: '请选择出库时间!' }]}]" @change="onChangeworkPieceOutboundTime"/>
|
</a-form-item>
|
<a-form-item label="出库人" :labelCol="labelCol" :wrapperCol="wrapperCol" has-feedback>
|
<a-date-picker style="width: 100%" placeholder="请选择出库人" v-decorator="['workPieceOutboundUser',{rules: [{ required: true, message: '请选择出库人!' }]}]" @change="onChangeworkPieceOutboundUser"/>
|
</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 moment from 'moment'
|
import {
|
WorkPieceOutboundEdit
|
} from '@/api/modular/main/WorkPieceOutboundManage'
|
export default {
|
data () {
|
return {
|
Id: 0,
|
labelCol: {
|
xs: { span: 24 },
|
sm: { span: 5 }
|
},
|
wrapperCol: {
|
xs: { span: 24 },
|
sm: { span: 15 }
|
},
|
record: {},
|
workPieceOutboundTimeDateString: '',
|
workPieceOutboundUserDateString: '',
|
visible: false,
|
confirmLoading: false,
|
form: this.$form.createForm(this)
|
}
|
},
|
methods: {
|
moment,
|
// 初始化方法
|
edit (record) {
|
this.visible = true;
|
this.Id = record.id;
|
this.$nextTick(() => {
|
});
|
//深度拷贝 移除VUE的监听,防止INDEX页面值变动
|
this.record = JSON.parse(JSON.stringify(record))
|
this.$nextTick(() => {
|
this.form.setFieldsValue(
|
{
|
id: record.id,
|
workPieceID: record.workPieceID,
|
oP80NewCode: record.oP80NewCode
|
}
|
)
|
})
|
this.form.getFieldDecorator('workPieceOutboundTime', { initialValue: moment(record.workPieceOutboundTime, 'YYYY-MM-DD') })
|
this.workPieceOutboundTimeDateString = moment(record.workPieceOutboundTime).format('YYYY-MM-DD')
|
this.form.getFieldDecorator('workPieceOutboundUser', { initialValue: moment(record.workPieceOutboundUser, 'YYYY-MM-DD') })
|
this.workPieceOutboundUserDateString = moment(record.workPieceOutboundUser).format('YYYY-MM-DD')
|
},
|
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]
|
}
|
}
|
values.workPieceOutboundTime = this.workPieceOutboundTimeDateString
|
this.record.workPieceOutboundTime = this.workPieceOutboundTimeDateString
|
values.workPieceOutboundUser = this.workPieceOutboundUserDateString
|
this.record.workPieceOutboundUser = this.workPieceOutboundUserDateString
|
WorkPieceOutboundEdit(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
|
}
|
});
|
},
|
onChangeworkPieceOutboundTime(date, dateString) {
|
this.workPieceOutboundTimeDateString = dateString
|
},
|
onChangeworkPieceOutboundUser(date, dateString) {
|
this.workPieceOutboundUserDateString = dateString
|
},
|
handleCancel () {
|
this.form.resetFields()
|
this.visible = false
|
}
|
}
|
}
|
</script>
|