<template>
|
|
<a-modal
|
title="收货"
|
:width="900"
|
:visible="visible"
|
:confirmLoading="confirmLoading"
|
@ok="handleSubmit"
|
@cancel="handleCancel">
|
<a-spin :spinning="confirmLoading">
|
<a-form :form="form" layout="inline">
|
<a-row :gutter="48">
|
<a-col :md="8" :sm="24">
|
<a-form-item label="收货人">
|
<a-input v-model="shr" allow-clear placeholder="请输入收货人"/>
|
</a-form-item>
|
</a-col>
|
</a-row>
|
<!-- <a-form-item v-show="false"><a-input v-decorator="['id']" /></a-form-item> -->
|
</a-form>
|
</a-spin>
|
</a-modal>
|
|
<!-- <a-modal
|
title="编辑收货单"
|
:width="900"
|
:visible="visible"
|
:confirmLoading="confirmLoading"
|
@ok="handleSubmit"
|
@cancel="handleCancel">
|
<a-spin :spinning="confirmLoading">
|
<a-form :form="form">
|
<a-form-item v-show="false"><a-input v-decorator="['id']" /></a-form-item>
|
</a-form>
|
</a-spin>
|
</a-modal> -->
|
</template>
|
|
<script>
|
import {
|
WmsReceiptOrderEdit
|
} from '@/api/modular/main/WmsReceiptOrderManage'
|
export default {
|
data () {
|
return {
|
Id: 0,
|
labelCol: {
|
xs: { span: 24 },
|
sm: { span: 5 }
|
},
|
wrapperCol: {
|
xs: { span: 24 },
|
sm: { span: 15 }
|
},
|
record: {},
|
visible: false,
|
confirmLoading: false,
|
form: this.$form.createForm(this),
|
shr:""
|
}
|
},
|
methods: {
|
// 初始化方法
|
edit (record) {
|
if(record.orderStatus == 4){
|
this.$message.warning('状态已完成,不可继续收货!');
|
return;
|
}
|
this.visible = true;
|
this.Id = record.id;
|
this.$nextTick(() => {
|
});
|
//深度拷贝 移除VUE的监听,防止INDEX页面值变动
|
this.record = JSON.parse(JSON.stringify(record))
|
const tradeModeOption = this.$options
|
this.tradeModeData = tradeModeOption.filters['dictData']('trade_mode')
|
const orderStatusOption = this.$options
|
this.orderStatusData = orderStatusOption.filters['dictData']('order_statusenum')
|
this.$nextTick(() => {
|
this.form.setFieldsValue(
|
{
|
id: record.id,
|
}
|
)
|
})
|
},
|
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]
|
}
|
}
|
WmsReceiptOrderEdit(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>
|