You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
201 lines
6.7 KiB
201 lines
6.7 KiB
<template> |
|
<a-spin :spinning="confirmLoading"> |
|
<j-form-container :disabled="formDisabled"> |
|
<a-form :form="form" slot="detail"> |
|
<a-row> |
|
<a-col :span="8"> |
|
<a-form-item label="商品名称" :labelCol="labelCol" :wrapperCol="wrapperCol"> |
|
<a-input v-decorator="['merchandiseName']" placeholder="请输入商品名称" ></a-input> |
|
</a-form-item> |
|
</a-col> |
|
<a-col :span="8"> |
|
<a-form-item label="供应商ID" :labelCol="labelCol" :wrapperCol="wrapperCol"> |
|
<a-input v-decorator="['supplierId']" placeholder="请输入供应商ID" ></a-input> |
|
</a-form-item> |
|
</a-col> |
|
<a-col :span="8"> |
|
<a-form-item label="第三方商品编号" :labelCol="labelCol" :wrapperCol="wrapperCol"> |
|
<a-input v-decorator="['partyNumber']" placeholder="请输入第三方商品编号" ></a-input> |
|
</a-form-item> |
|
</a-col> |
|
<a-col :span="8"> |
|
<a-form-item label="品名编号ID" :labelCol="labelCol" :wrapperCol="wrapperCol"> |
|
<a-input v-decorator="['descriptionId']" placeholder="请输入品名编号ID" ></a-input> |
|
</a-form-item> |
|
</a-col> |
|
<a-col :span="8"> |
|
<a-form-item label="物资编号" :labelCol="labelCol" :wrapperCol="wrapperCol"> |
|
<a-input v-decorator="['materialsNumber']" placeholder="请输入物资编号" ></a-input> |
|
</a-form-item> |
|
</a-col> |
|
<a-col :span="8"> |
|
<a-form-item label="物资单位" :labelCol="labelCol" :wrapperCol="wrapperCol"> |
|
<a-input v-decorator="['materialsUnit']" placeholder="请输入物资单位" ></a-input> |
|
</a-form-item> |
|
</a-col> |
|
<a-col :span="8"> |
|
<a-form-item label="型号" :labelCol="labelCol" :wrapperCol="wrapperCol"> |
|
<a-input v-decorator="['type']" placeholder="请输入型号" ></a-input> |
|
</a-form-item> |
|
</a-col> |
|
<a-col :span="8"> |
|
<a-form-item label="规格" :labelCol="labelCol" :wrapperCol="wrapperCol"> |
|
<a-input v-decorator="['specification']" placeholder="请输入规格" ></a-input> |
|
</a-form-item> |
|
</a-col> |
|
<a-col :span="8"> |
|
<a-form-item label="简介概要" :labelCol="labelCol" :wrapperCol="wrapperCol"> |
|
<a-input v-decorator="['synopsis']" placeholder="请输入简介概要" ></a-input> |
|
</a-form-item> |
|
</a-col> |
|
<a-col :span="8"> |
|
<a-form-item label="分类" :labelCol="labelCol" :wrapperCol="wrapperCol"> |
|
<a-input-number v-decorator="['classify']" placeholder="请输入分类" style="width: 100%" /> |
|
</a-form-item> |
|
</a-col> |
|
<a-col v-if="showFlowSubmitButton" :span="24" style="text-align: center"> |
|
<a-button @click="submitForm">提 交</a-button> |
|
</a-col> |
|
</a-row> |
|
</a-form> |
|
</j-form-container> |
|
</a-spin> |
|
</template> |
|
|
|
<script> |
|
|
|
import { httpAction, getAction } from '@/api/manage' |
|
import pick from 'lodash.pick' |
|
import { validateDuplicateValue } from '@/utils/util' |
|
import JFormContainer from '@/components/jeecg/JFormContainer' |
|
|
|
export default { |
|
name: 'ProcessMerchandiseNewsForm', |
|
components: { |
|
JFormContainer, |
|
}, |
|
props: { |
|
//流程表单data |
|
formData: { |
|
type: Object, |
|
default: ()=>{}, |
|
required: false |
|
}, |
|
//表单模式:true流程表单 false普通表单 |
|
formBpm: { |
|
type: Boolean, |
|
default: false, |
|
required: false |
|
}, |
|
//表单禁用 |
|
disabled: { |
|
type: Boolean, |
|
default: false, |
|
required: false |
|
} |
|
}, |
|
data () { |
|
return { |
|
form: this.$form.createForm(this), |
|
model: {}, |
|
labelCol: { |
|
xs: { span: 24 }, |
|
sm: { span: 5 }, |
|
}, |
|
wrapperCol: { |
|
xs: { span: 24 }, |
|
sm: { span: 16 }, |
|
}, |
|
confirmLoading: false, |
|
validatorRules: { |
|
}, |
|
url: { |
|
add: "/merchandisenews/processMerchandiseNews/add", |
|
edit: "/merchandisenews/processMerchandiseNews/edit", |
|
queryById: "/merchandisenews/processMerchandiseNews/queryById" |
|
} |
|
} |
|
}, |
|
computed: { |
|
formDisabled(){ |
|
if(this.formBpm===true){ |
|
if(this.formData.disabled===false){ |
|
return false |
|
} |
|
return true |
|
} |
|
return this.disabled |
|
}, |
|
showFlowSubmitButton(){ |
|
if(this.formBpm===true){ |
|
if(this.formData.disabled===false){ |
|
return true |
|
} |
|
} |
|
return false |
|
} |
|
}, |
|
created () { |
|
//如果是流程中表单,则需要加载流程表单data |
|
this.showFlowData(); |
|
}, |
|
methods: { |
|
add () { |
|
this.edit({}); |
|
}, |
|
edit (record) { |
|
this.form.resetFields(); |
|
this.model = Object.assign({}, record); |
|
this.visible = true; |
|
this.$nextTick(() => { |
|
this.form.setFieldsValue(pick(this.model,'merchandiseName','supplierId','partyNumber','descriptionId','materialsNumber','materialsUnit','type','specification','synopsis','classify')) |
|
}) |
|
}, |
|
//渲染流程表单数据 |
|
showFlowData(){ |
|
if(this.formBpm === true){ |
|
let params = {id:this.formData.dataId}; |
|
getAction(this.url.queryById,params).then((res)=>{ |
|
if(res.success){ |
|
this.edit (res.result); |
|
} |
|
}); |
|
} |
|
}, |
|
submitForm () { |
|
const that = this; |
|
// 触发表单验证 |
|
this.form.validateFields((err, values) => { |
|
if (!err) { |
|
that.confirmLoading = true; |
|
let httpurl = ''; |
|
let method = ''; |
|
if(!this.model.id){ |
|
httpurl+=this.url.add; |
|
method = 'post'; |
|
}else{ |
|
httpurl+=this.url.edit; |
|
method = 'put'; |
|
} |
|
let formData = Object.assign(this.model, values); |
|
console.log("表单提交数据",formData) |
|
httpAction(httpurl,formData,method).then((res)=>{ |
|
if(res.success){ |
|
that.$message.success(res.message); |
|
that.$emit('ok'); |
|
}else{ |
|
that.$message.warning(res.message); |
|
} |
|
}).finally(() => { |
|
that.confirmLoading = false; |
|
}) |
|
} |
|
|
|
}) |
|
}, |
|
popupCallback(row){ |
|
this.form.setFieldsValue(pick(row,'merchandiseName','supplierId','partyNumber','descriptionId','materialsNumber','materialsUnit','type','specification','synopsis','classify')) |
|
}, |
|
} |
|
} |
|
</script> |