|
@@ -186,20 +186,23 @@
|
|
|
<a-input v-model:value="formData.inquiryTeamName" disabled />
|
|
|
</a-form-item>
|
|
|
</a-col>
|
|
|
+ <a-col :span="12">
|
|
|
+ <a-form-item label="质量等级(quality grade)" v-bind="validateInfos.inquiryTeam" id="SaleInquiryFormForm-inquiryTeam" name="inquiryTeam" :label-col="formItemLayout.labelCol1" :wrapper-col="formItemLayout.wrapperCol1">
|
|
|
+ <JDictSelectTag v-model:value="formData.qualityGradeHead" placeholder="请选择" dictCode="quality_grade" />
|
|
|
+ </a-form-item>
|
|
|
+ </a-col>
|
|
|
<a-col :span="12">
|
|
|
<a-form-item
|
|
|
label="询价备注(inquiry notes)"
|
|
|
v-bind="validateInfos.inquiryNotes"
|
|
|
id="PuechaseInquiryFormForm-inquiryNotes"
|
|
|
name="inquiryNotes"
|
|
|
- :label-col="formItemLayout.labelCol1"
|
|
|
- :wrapper-col="formItemLayout.wrapperCol1"
|
|
|
>
|
|
|
<a-input v-model:value="formData.inquiryNotes" placeholder="请输入询价备注(inquiry notes)" allow-clear AutoComplete="off" />
|
|
|
</a-form-item>
|
|
|
</a-col>
|
|
|
<a-col :span="12">
|
|
|
- <a-form-item label="销售说明(sale notes)" v-bind="validateInfos.saleNotes" id="SaleOrderForm-saleNotes" name="saleNotes">
|
|
|
+ <a-form-item label="销售说明(sale notes)" v-bind="validateInfos.saleNotes" id="SaleOrderForm-saleNotes" name="saleNotes" :label-col="formItemLayout.labelCol1" :wrapper-col="formItemLayout.wrapperCol1">
|
|
|
<a-textarea v-model:value="formData.saleNotes" AutoComplete="off" :rows="2" />
|
|
|
</a-form-item>
|
|
|
</a-col>
|
|
@@ -209,14 +212,12 @@
|
|
|
v-bind="validateInfos.agreementTerms"
|
|
|
id="SaleOrderForm-agreementTerms"
|
|
|
name="agreementTerms"
|
|
|
- :label-col="formItemLayout.labelCol1"
|
|
|
- :wrapper-col="formItemLayout.wrapperCol1"
|
|
|
>
|
|
|
<a-textarea v-model:value="formData.agreementTerms" AutoComplete="off" :rows="2" />
|
|
|
</a-form-item>
|
|
|
</a-col>
|
|
|
<a-col :span="12">
|
|
|
- <a-form-item label="附件(attachs)" v-bind="validateInfos.attachs" id="PuechaseInquiryFormForm-attachs" name="attachs">
|
|
|
+ <a-form-item label="附件(attachs)" v-bind="validateInfos.attachs" id="PuechaseInquiryFormForm-attachs" name="attachs" :label-col="formItemLayout.labelCol1" :wrapper-col="formItemLayout.wrapperCol1">
|
|
|
<JUpload v-model:value="formData.attachs" />
|
|
|
</a-form-item>
|
|
|
</a-col>
|
|
@@ -381,6 +382,7 @@
|
|
|
sourceId: '',
|
|
|
agreementTerms: '',
|
|
|
saleNotes: '',
|
|
|
+ qualityGradeHead:''
|
|
|
});
|
|
|
|
|
|
//表单验证
|
|
@@ -592,6 +594,7 @@
|
|
|
formData.productionClass = data[0].productionClass;
|
|
|
formData.saleAttachs = data[0].attachs;
|
|
|
formData.saleNotes = data[0].inquiryNotes;
|
|
|
+ formData.qualityGradeHead = data[0].qualityGrade;
|
|
|
getShipList(data[0].headId);
|
|
|
}
|
|
|
function getShipList(id) {
|