|
@@ -119,9 +119,13 @@
|
|
|
<a-input v-model:value="formData.invoiceHeader" placeholder="请输入" AutoComplete="off"/>
|
|
|
</a-form-item>
|
|
|
</a-col>
|
|
|
-
|
|
|
<a-col :span="12">
|
|
|
- <a-form-item label="是否有第三方运费(otherFee)" v-bind="validateInfos.otherFee" id="SaleOrderForm-otherFee" name="otherFee" >
|
|
|
+ <a-form-item label="包装详情(packingDetails))" v-bind="validateInfos.packingDetails " id="SaleOrderForm-packingDetails " name="packingDetails " >
|
|
|
+ <a-input v-model:value="formData.packingDetails " placeholder="请输入" AutoComplete="off"/>
|
|
|
+ </a-form-item>
|
|
|
+ </a-col>
|
|
|
+ <a-col :span="12">
|
|
|
+ <a-form-item label="是否有第三方运费(otherFee)" v-bind="validateInfos.otherFee" id="SaleOrderForm-otherFee" name="otherFee" :labelCol="formItemLayout.labelCol1" :wrapperCol="formItemLayout.wrapperCol1">
|
|
|
<a-select v-model:value="formData.otherFee">
|
|
|
<a-select-option value="是"> 是 </a-select-option>
|
|
|
<a-select-option value="否"> 否 </a-select-option>
|
|
@@ -129,7 +133,7 @@
|
|
|
</a-form-item>
|
|
|
</a-col>
|
|
|
<a-col :span="12">
|
|
|
- <a-form-item label="备注(notes)" v-bind="validateInfos.notes" id="quotationFormForm-notes" name="notes" :labelCol="formItemLayout.labelCol1" :wrapperCol="formItemLayout.wrapperCol1">
|
|
|
+ <a-form-item label="备注(notes)" v-bind="validateInfos.notes" id="quotationFormForm-notes" name="notes" >
|
|
|
<a-input v-model:value="formData.notes" placeholder="请输入备注(notes)" allow-clear AutoComplete="off"></a-input>
|
|
|
</a-form-item>
|
|
|
</a-col>
|
|
@@ -289,7 +293,8 @@
|
|
|
blno: '',
|
|
|
notes: '',
|
|
|
invoiceHeader:'',
|
|
|
- otherFee :''
|
|
|
+ otherFee :'',
|
|
|
+ packingDetails:''
|
|
|
});
|
|
|
|
|
|
//表单验证
|