<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 disabled="true" placeholder="请输入站点编号" v-decorator="['code']" />
|
</a-form-item>
|
<a-form-item label="站点名称" :labelCol="labelCol" :wrapperCol="wrapperCol" has-feedback>
|
<a-input placeholder="请输入站点名称" v-decorator="['name', {rules: [{required: true, message: '请输入站点名称!'}]}]" />
|
</a-form-item>
|
<a-form-item label="站点类型" :labelCol="labelCol" :wrapperCol="wrapperCol">
|
<a-select :allowClear="true" style="width: 100%" placeholder="请选择站点类型" v-decorator="['siteType', {rules: [{required: true, message: '请选择站点类型!'}]}]">
|
<a-select-option v-for="(item,index) in siteTypeData" :key="index" :value="parseInt(item.code)">{{ item.name }}</a-select-option>
|
</a-select>
|
</a-form-item>
|
<a-form-item label="描述" :labelCol="labelCol" :wrapperCol="wrapperCol" has-feedback>
|
<a-input placeholder="请输入描述" v-decorator="['describe']" />
|
</a-form-item>
|
<a-form-item label="站点所属线别" :labelCol="labelCol" :wrapperCol="wrapperCol">
|
<a-select :allowClear="true" style="width: 100%" placeholder="请选择站点所属线别" v-decorator="['lineType', {rules: [{required: true, message: '请选择站点所属线别!'}]}]">
|
<a-select-option v-for="(item,index) in lineTypeData" :key="index" :value="parseInt(item.code)">{{ item.name }}</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 {
|
WareSiteEdit
|
} from '@/api/modular/main/WareSiteManage'
|
export default {
|
data () {
|
return {
|
Id: 0,
|
labelCol: {
|
xs: { span: 24 },
|
sm: { span: 5 }
|
},
|
wrapperCol: {
|
xs: { span: 24 },
|
sm: { span: 15 }
|
},
|
record: {},
|
lineTypeData: [],
|
siteTypeData:[],
|
visible: false,
|
confirmLoading: false,
|
form: this.$form.createForm(this)
|
}
|
},
|
methods: {
|
// 初始化方法
|
edit (record) {
|
this.visible = true;
|
this.Id = record.id;
|
this.$nextTick(() => {
|
});
|
//深度拷贝 移除VUE的监听,防止INDEX页面值变动
|
this.record = JSON.parse(JSON.stringify(record))
|
const lineTypeOption = this.$options
|
this.lineTypeData = lineTypeOption.filters['dictData']('line_type')
|
const siteTypeOption = this.$options
|
this.siteTypeData = siteTypeOption.filters['dictData']('site_type')
|
this.$nextTick(() => {
|
this.form.setFieldsValue(
|
{
|
id: record.id,
|
name: record.name,
|
code: record.code,
|
describe: record.describe,
|
//xcoordinate: record.xcoordinate,
|
//ycoordinate: record.ycoordinate,
|
siteType: record.siteType,
|
//status: record.status,
|
//lane: record.lane,
|
//operationRemarks: record.operationRemarks,
|
lineType: record.lineType
|
}
|
)
|
})
|
},
|
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]
|
}
|
}
|
WareSiteEdit(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>
|