Переглянути джерело

采购管理-清除输入框历史记录

jingbb 5 місяців тому
батько
коміт
fd2d7c037d

+ 5 - 5
src/views/purchase/arrivedGoods/ArriveGoodsList.vue

@@ -7,7 +7,7 @@
           <a-col :lg="8">
               <a-form-item name="billCode">
                 <template #label><span title="到货单号(bill code)">到货单号(bill code)</span></template>
-                <a-input placeholder="请输入到货单号(bill code)" v-model:value="queryParam.billCode" allow-clear ></a-input>
+                <a-input placeholder="请输入到货单号(bill code)" v-model:value="queryParam.billCode" allow-clear AutoComplete="off"></a-input>
               </a-form-item>
           </a-col>
           <a-col :lg="8">
@@ -20,7 +20,7 @@
             <a-col :lg="8">
               <a-form-item name="projectName" :label-col="labelCol1" :wrapper-col="wrapperCol1">
                 <template #label><span title="项目(projectName)">项目(projectName)</span></template>
-                <a-input placeholder="请输入项目(projectName)" v-model:value="queryParam.projectName" allow-clear ></a-input>
+                <a-input placeholder="请输入项目(projectName)" v-model:value="queryParam.projectName" allow-clear AutoComplete="off"></a-input>
               </a-form-item>
             </a-col>
             <a-col :lg="8">
@@ -58,7 +58,7 @@
             <a-col :lg="8">
               <a-form-item name="maker">
                 <template #label><span title="厂家(maker)">厂家(maker)</span></template>
-                <a-input placeholder="请输入厂家(maker)" v-model:value="queryParam.maker" allow-clear ></a-input>
+                <a-input placeholder="请输入厂家(maker)" v-model:value="queryParam.maker" allow-clear AutoComplete="off"></a-input>
               </a-form-item>
             </a-col>
             <!-- <a-col :lg="8">
@@ -70,13 +70,13 @@
             <a-col :lg="8">
               <a-form-item name="purchaseDepartment" :label-col="labelCol1" :wrapper-col="wrapperCol1">
                 <template #label ><span title="采购部门(purchase department)">采购部门(purchase department)</span></template>
-                <a-input placeholder="请输入采购部门(purchase department)" v-model:value="queryParam.purchaseDepartment" allow-clear ></a-input>
+                <a-input placeholder="请输入采购部门(purchase department)" v-model:value="queryParam.purchaseDepartment" allow-clear AutoComplete="off"></a-input>
               </a-form-item>
             </a-col>
             <a-col :lg="8">
               <a-form-item name="purchaseman">
                 <template #label><span title="采购员(purchaseman)">采购员(purchaseman)</span></template>
-                <a-input placeholder="请输入采购员(purchaseman)" v-model:value="queryParam.purchaseman" allow-clear ></a-input>
+                <a-input placeholder="请输入采购员(purchaseman)" v-model:value="queryParam.purchaseman" allow-clear AutoComplete="off"></a-input>
               </a-form-item>
             </a-col>
             <a-col :lg="8">

+ 3 - 3
src/views/purchase/arrivedGoods/components/ArriveGoodsFormForm.vue

@@ -16,7 +16,7 @@
 						</a-col>		
 						<a-col :span="12">
 							<a-form-item label="项目(project)" v-bind="validateInfos.projectName" id="SaleOrderForm-projectName" name="projectName">
-								<a-input-search v-model:value="formData.projectName" placeholder="请输入项目(project)" :disabled="notAllowEdit"  allow-clear enter-button="Search" @search="onSearchProject"></a-input-search>
+								<a-input-search v-model:value="formData.projectName" placeholder="请输入项目(project)" :disabled="notAllowEdit"  AutoComplete="off"  allow-clear enter-button="Search" @search="onSearchProject"></a-input-search>
 							</a-form-item>
 						</a-col>
 						<a-col :span="12">
@@ -65,7 +65,7 @@
 						</a-col>
             <a-col :span="12">
 							<a-form-item label="运单号(waybill number)" v-bind="validateInfos.waybillNumber" id="SaleOrderForm-waybillNumber" name="waybillNumber">
-								<a-input v-model:value="formData.waybillNumber" placeholder="请输入运单号(waybill number)"  allow-clear ></a-input>
+								<a-input v-model:value="formData.waybillNumber" placeholder="请输入运单号(waybill number)"  allow-clear  AutoComplete="off"></a-input>
 							</a-form-item>
 						</a-col>
             <a-col :span="12">
@@ -105,7 +105,7 @@
 						</a-col>
             <a-col :span="12">
 							<a-form-item label="备注(notes)" v-bind="validateInfos.notes" id="SaleOrderForm-notes" name="notes">
-								<a-input v-model:value="formData.notes"></a-input>
+								<a-input v-model:value="formData.notes" AutoComplete="off"></a-input>
 							</a-form-item>
 						</a-col>   
             <a-col :span="12">

+ 1 - 1
src/views/purchase/freightPurchaseOrder/FreightPurchaseOrderList.vue

@@ -7,7 +7,7 @@
           <a-col :lg="8">
               <a-form-item name="billCode">
                 <template #label><span title="订单编号(bill code)">订单编号(bill code)</span></template>
-                <a-input placeholder="请输入订单编号(bill code)" v-model:value="queryParam.billCode" allow-clear ></a-input>
+                <a-input placeholder="请输入订单编号(bill code)" v-model:value="queryParam.billCode" allow-clear AutoComplete="off"></a-input>
               </a-form-item>
           </a-col>
           <a-col :lg="8">

+ 1 - 1
src/views/purchase/freightPurchaseOrder/components/FreightPurOrderForm.vue

@@ -26,7 +26,7 @@
 						</a-col>
             <a-col :span="12">
 							<a-form-item label="备注(notes)" v-bind="validateInfos.notes" id="SaleOrderForm-notes" name="notes">
-								<a-input v-model:value="formData.notes"></a-input>
+								<a-input v-model:value="formData.notes" AutoComplete="off"></a-input>
 							</a-form-item>
 						</a-col>        
           </a-row>

+ 4 - 4
src/views/purchase/purchaseInquiryForm/components/PurchaseInquiryFormForm.vue

@@ -17,7 +17,7 @@
 						
 						<a-col :span="12">
 							<a-form-item label="询价项目(inquiry project)" v-bind="validateInfos.projectName" id="PuechaseInquiryFormForm-projectName" name="projectName">
-								<a-input-search v-model:value="formData.projectName" placeholder="请输入询价项目(inquiry project)" :disabled="notAllowEdit"  allow-clear enter-button="Search" @search="onSearchProject"></a-input-search>
+								<a-input-search v-model:value="formData.projectName" placeholder="请输入询价项目(inquiry project)" AutoComplete="off" :disabled="notAllowEdit"  allow-clear enter-button="Search" @search="onSearchProject"></a-input-search>
 							</a-form-item>
 						</a-col>
 						<a-col :span="12">
@@ -52,13 +52,13 @@
 						</a-col>
 						<a-col :span="12">
 							<a-form-item label="交货地点(place of delivery)" v-bind="validateInfos.placeDelivery" id="PuechaseInquiryFormForm-placeDelivery" name="placeDelivery" :label-col="formItemLayout.labelCol1" :wrapper-col="formItemLayout.wrapperCol1">
-								<a-input v-model:value="formData.placeDelivery" placeholder=""  allow-clear ></a-input>
+								<a-input v-model:value="formData.placeDelivery" placeholder=""  allow-clear AutoComplete="off" ></a-input>
 							</a-form-item>
 						</a-col>
             <a-col :span="12">
 							<a-form-item label="付款条件(payment terms)" v-bind="validateInfos.paymentTerms" id="quotationFormForm-paymentTerms" name="paymentTerms" >
                 <JDictSelectTag v-model:value="formData.paymentTerms" placeholder="请选择" dictCode="payment_terms" style="width: 49%;margin-right: 1%;"/>
-                <a-input v-model:value="formData.paymentTermsInfo" placeholder=""  allow-clear style="width: 49%"></a-input>
+                <a-input v-model:value="formData.paymentTermsInfo" placeholder=""  allow-clear style="width: 49%" AutoComplete="off"></a-input>
 							</a-form-item>
 						</a-col>
             <!-- <a-col :span="12">
@@ -84,7 +84,7 @@
 						</a-col>
             <a-col :span="12">
 							<a-form-item label="询价备注(inquiry notes)" v-bind="validateInfos.inquiryNotes" id="PuechaseInquiryFormForm-inquiryNotes" name="inquiryNotes" >
-								<a-input v-model:value="formData.inquiryNotes" placeholder="请输入询价备注(inquiry notes)"  allow-clear ></a-input>
+								<a-input v-model:value="formData.inquiryNotes" placeholder="请输入询价备注(inquiry notes)"  allow-clear AutoComplete="off"></a-input>
 							</a-form-item>
 						</a-col>
 						<a-col :span="12">

+ 4 - 4
src/views/purchase/purchaseInquiryForm/purchaseInquiryFormList.vue

@@ -7,7 +7,7 @@
           <a-col :lg="8">
               <a-form-item name="billCode">
                 <template #label><span title="询价单号(bill code)">询价单号(bill code)</span></template>
-                <a-input placeholder="请输入询价单号(bill code)" v-model:value="queryParam.billCode" allow-clear ></a-input>
+                <a-input placeholder="请输入询价单号(bill code)" v-model:value="queryParam.billCode" allow-clear AutoComplete="off"></a-input>
               </a-form-item>
           </a-col>
           <a-col :lg="8">
@@ -20,13 +20,13 @@
             <a-col :lg="8">
               <a-form-item name="inquiryProject">
                 <template #label><span title="询价项目(inquiry project)">询价项目(inquiry project)</span></template>
-                <a-input placeholder="请输入询价项目(inquiry project)" v-model:value="queryParam.inquiryProject" allow-clear ></a-input>
+                <a-input placeholder="请输入询价项目(inquiry project)" v-model:value="queryParam.inquiryProject" allow-clear AutoComplete="off"></a-input>
               </a-form-item>
             </a-col>
             <a-col :lg="8">
               <a-form-item name="inquirySuppiler">
                 <template #label><span title="询价供应商(inquiry supplier)">询价供应商(inquiry supplier)</span></template>
-                <a-input placeholder="请输入" v-model:value="queryParam.inquirySuppiler" allow-clear ></a-input>
+                <a-input placeholder="请输入" v-model:value="queryParam.inquirySuppiler" allow-clear AutoComplete="off"></a-input>
               </a-form-item>
             </a-col>
             <a-col :lg="8">
@@ -50,7 +50,7 @@
             <a-col :lg="8">
               <a-form-item name="maker">
                 <template #label><span title="厂家(maker)">厂家(maker)</span></template>
-                <a-input placeholder="请输入厂家(maker)" v-model:value="queryParam.maker" allow-clear ></a-input>
+                <a-input placeholder="请输入厂家(maker)" v-model:value="queryParam.maker" allow-clear AutoComplete="off"></a-input>
               </a-form-item>
             </a-col>
             <a-col :lg="8">

+ 3 - 3
src/views/purchase/purchaseOrder/PurchaseOrderFormList.vue

@@ -13,7 +13,7 @@
           <a-col :lg="8">
               <a-form-item name="billCode" :label-col="labelCol1" :wrapper-col="wrapperCol1">
                 <template #label><span title="订单编号(bill code)">订单编号(bill code)</span></template>
-                <a-input placeholder="请输入订单编号(bill code)" v-model:value="queryParam.billCode" allow-clear ></a-input>
+                <a-input placeholder="请输入订单编号(bill code)" v-model:value="queryParam.billCode" allow-clear AutoComplete="off"></a-input>
               </a-form-item>
           </a-col>          
           <template v-if="toggleSearchStatus">
@@ -50,13 +50,13 @@
             <a-col :lg="8">
               <a-form-item name="maker" :label-col="labelCol1" :wrapper-col="wrapperCol1">
                 <template #label><span title="厂家(maker)">厂家(maker)</span></template>
-                <a-input placeholder="请输入厂家(maker)" v-model:value="queryParam.maker" allow-clear ></a-input>
+                <a-input placeholder="请输入厂家(maker)" v-model:value="queryParam.maker" allow-clear AutoComplete="off"></a-input>
               </a-form-item>
             </a-col>            
             <a-col :lg="8">
               <a-form-item name="productCode" >
                 <template #label><span title="产品编码(product code)">产品编码(product code)</span></template>
-                <a-input placeholder="请输入" v-model:value="queryParam.productCode" allow-clear ></a-input>
+                <a-input placeholder="请输入" v-model:value="queryParam.productCode" allow-clear AutoComplete="off"></a-input>
               </a-form-item>
             </a-col>
             <a-col :lg="8">

+ 10 - 10
src/views/purchase/purchaseOrder/components/PurchaseOrderFormForm.vue

@@ -17,12 +17,12 @@
 						
 						<a-col :span="12">
 							<a-form-item label="项目(project)" v-bind="validateInfos.projectName" id="SaleOrderForm-projectName" name="projectName">
-								<a-input-search v-model:value="formData.projectName" placeholder="请输入项目(project)" :disabled="notAllowEdit"  allow-clear enter-button="Search" @search="onSearchProject"></a-input-search>
+								<a-input-search v-model:value="formData.projectName" placeholder="请输入项目(project)" :disabled="notAllowEdit"  allow-clear enter-button="Search" AutoComplete="off" @search="onSearchProject"></a-input-search>
 							</a-form-item>
 						</a-col>
 						<a-col :span="12">
 							<a-form-item label="供应商(supplier)" v-bind="validateInfos.supplier" :label-col="formItemLayout.labelCol1" :wrapper-col="formItemLayout.wrapperCol1" id="SaleOrderForm-supplier" name="supplier">
-                <a-input   v-model:value="formData.supplierName"  placeholder="请选择" allow-clear   :disabled="notAllowEdit"></a-input>
+                <a-input   v-model:value="formData.supplierName"  placeholder="请选择" allow-clear   :disabled="notAllowEdit" AutoComplete="off"></a-input>
 							</a-form-item>
 						</a-col>
 						<a-col :span="12">
@@ -61,7 +61,7 @@
 						</a-col>
             <a-col :span="12">
 							<a-form-item label="包装要求(package requirement)" v-bind="validateInfos.packagebRequirement" :label-col="formItemLayout.labelCol1" :wrapper-col="formItemLayout.wrapperCol1" id="SaleOrderForm-packagebRequirement" name="packagebRequirement">
-								<a-input v-model:value="formData.packagebRequirement" placeholder="请输入包装要求(package requirement)"  allow-clear ></a-input>
+								<a-input v-model:value="formData.packagebRequirement" placeholder="请输入包装要求(package requirement)"  allow-clear AutoComplete="off"></a-input>
 							</a-form-item>
 						</a-col> 
             <a-col :span="12">
@@ -71,17 +71,17 @@
 						</a-col>  
             <a-col :span="12">
 							<a-form-item label="收件人(recipient)" v-bind="validateInfos.recipient" :label-col="formItemLayout.labelCol1" :wrapper-col="formItemLayout.wrapperCol1" id="SaleOrderForm-recipient" name="recipient">
-                <a-input v-model:value="formData.recipient" placeholder="请选择"  />
+                <a-input v-model:value="formData.recipient" placeholder="请输入"  AutoComplete="off"/>
 							</a-form-item>
 						</a-col>
             <a-col :span="12">
 							<a-form-item label="收件人电话(recipient tel)" v-bind="validateInfos.recipientTel" id="SaleOrderForm-recipientTel" name="recipientTel">
-                <a-input v-model:value="formData.recipientTel" placeholder="请选择"  />
+                <a-input v-model:value="formData.recipientTel" placeholder="请输入"  AutoComplete="off"/>
 							</a-form-item>
 						</a-col>
             <a-col :span="12">
 							<a-form-item label="收件人地址(recipient address)" v-bind="validateInfos.recipientAddress" :label-col="formItemLayout.labelCol1" :wrapper-col="formItemLayout.wrapperCol1" id="SaleOrderForm-recipientAddress" name="recipientAddress">
-                <a-input v-model:value="formData.recipientAddress" placeholder="请选择"  />
+                <a-input v-model:value="formData.recipientAddress" placeholder="请输入"  AutoComplete="off"/>
 							</a-form-item>
 						</a-col>
             <a-col :span="12">
@@ -101,17 +101,17 @@
 						</a-col>
             <a-col :span="12">
 							<a-form-item label="质保期(warranty period)" v-bind="validateInfos.warrantyPeriod" id="SaleOrderForm-warrantyPeriod" name="warrantyPeriod" :label-col="formItemLayout.labelCol1" :wrapper-col="formItemLayout.wrapperCol1">
-                <a-input v-model:value="formData.warrantyPeriod" placeholder="请输入" style="width: 85%;margin-right: 1%;"/>月(month)
+                <a-input v-model:value="formData.warrantyPeriod" placeholder="请输入" style="width: 85%;margin-right: 1%;" AutoComplete="off"/>月(month)
 							</a-form-item>
 						</a-col>
             <a-col :span="12">
 							<a-form-item label="质保条款(warranty terms)" v-bind="validateInfos.warrantyTerms" id="SaleOrderForm-warrantyTerms" name="warrantyTerms">
-								<a-input v-model:value="formData.warrantyTerms" placeholder="请输入质保条款(warranty terms)"  allow-clear ></a-input>
+								<a-input v-model:value="formData.warrantyTerms" placeholder="请输入质保条款(warranty terms)"  allow-clear AutoComplete="off" ></a-input>
 							</a-form-item>
 						</a-col> 
 						<a-col :span="12">
 							<a-form-item label="汇率(exchange rate)" v-bind="validateInfos.exchangeRate" id="SaleOrderForm-exchangeRate" name="exchangeRate"  :label-col="formItemLayout.labelCol1" :wrapper-col="formItemLayout.wrapperCol1">
-								<a-input v-model:value="formData.exchangeRate" placeholder="请输入厂家(maker)"  allow-clear ></a-input>
+								<a-input v-model:value="formData.exchangeRate" placeholder="请输入"  allow-clear AutoComplete="off"></a-input>
 							</a-form-item>
 						</a-col>
             <a-col :span="12">
@@ -131,7 +131,7 @@
 						</a-col> 
             <a-col :span="12">
 							<a-form-item label="备注(notes)" v-bind="validateInfos.notes" id="SaleOrderForm-notes" name="notes"  :label-col="formItemLayout.labelCol1" :wrapper-col="formItemLayout.wrapperCol1">
-								<a-input v-model:value="formData.notes"></a-input>
+								<a-input v-model:value="formData.notes" AutoComplete="off"></a-input>
 							</a-form-item>
 						</a-col>           
           </a-row>

+ 2 - 2
src/views/purchase/purchaseQuotationFrm/components/PurchaseQuotationFormForm.vue

@@ -67,7 +67,7 @@
             <a-col :span="12">
 							<a-form-item label="付款条件(payment terms)" v-bind="validateInfos.paymentTerms" id="PuechaseQuotationFormForm-paymentTerms" name="paymentTerms" :labelCol="formItemLayout.labelCol1" :wrapperCol="formItemLayout.wrapperCol1">
                 <JDictSelectTag v-model:value="formData.paymentTerms" placeholder="请选择" dictCode="payment_terms" style="width: 49%;margin-right: 1%;"/>
-                <a-input v-model:value="formData.paymentTermsInfo" placeholder=""  allow-clear style="width: 49%"></a-input>
+                <a-input v-model:value="formData.paymentTermsInfo" placeholder=""  allow-clear style="width: 49%" AutoComplete="off"></a-input>
 							</a-form-item>
 						</a-col>
             <a-col :span="12">
@@ -93,7 +93,7 @@
 						</a-col>     
             <a-col :span="12">
 							<a-form-item label="报价备注(quotation notes)" v-bind="validateInfos.quotationNotes" id="PuechaseQuotationFormForm-quotationNotes" name="quotationNotes">
-								<a-input v-model:value="formData.quotationNotes" placeholder="请输入报价备注(quotation notes)"  allow-clear ></a-input>
+								<a-input v-model:value="formData.quotationNotes" placeholder="请输入报价备注(quotation notes)"  allow-clear AutoComplete="off"></a-input>
 							</a-form-item>
 						</a-col>      
 						<a-col :span="12">

+ 4 - 4
src/views/purchase/purchaseQuotationFrm/purchaseQuotationFormList.vue

@@ -7,7 +7,7 @@
           <a-col :lg="8">
               <a-form-item name="billCode">
                 <template #label><span title="报价单号(bill code)">报价单号(bill code)</span></template>
-                <a-input placeholder="" v-model:value="queryParam.billCode" allow-clear ></a-input>
+                <a-input placeholder="" v-model:value="queryParam.billCode" allow-clear AutoComplete="off"></a-input>
               </a-form-item>
           </a-col>
           <a-col :lg="8">
@@ -20,7 +20,7 @@
             <a-col :lg="8">
               <a-form-item name="quotatioProject">
                 <template #label><span title="报价项目(quotation project)">报价项目(quotation project)</span></template>
-                <a-input placeholder="请输入询价项目(inquiry project)" v-model:value="queryParam.quotatioProject" allow-clear ></a-input>
+                <a-input placeholder="请输入询价项目(inquiry project)" v-model:value="queryParam.quotatioProject" allow-clear AutoComplete="off"></a-input>
               </a-form-item>
             </a-col>
             <a-col :lg="8">
@@ -50,13 +50,13 @@
             <a-col :lg="8">
               <a-form-item name="maker">
                 <template #label><span title="厂家(maker)">厂家(maker)</span></template>
-                <a-input placeholder="请输入厂家(maker)" v-model:value="queryParam.maker" allow-clear ></a-input>
+                <a-input placeholder="请输入厂家(maker)" v-model:value="queryParam.maker" allow-clear AutoComplete="off"></a-input>
               </a-form-item>
             </a-col>
             <a-col :lg="8">
               <a-form-item name="productionCode">
                 <template #label><span title="产品编号(production code)">产品编号(production code)</span></template>
-                <a-input placeholder="请输入" v-model:value="queryParam.productionCode" allow-clear ></a-input>
+                <a-input placeholder="请输入" v-model:value="queryParam.productionCode" allow-clear AutoComplete="off"></a-input>
               </a-form-item>
             </a-col>
             <a-col :lg="8">

+ 1 - 1
src/views/purchase/selectionQuotationForm/components/SelectQuotationFormForm.vue

@@ -42,7 +42,7 @@
 						</a-col>
             <a-col :span="12">
 							<a-form-item label="选定备注(selection notes)" v-bind="validateInfos.selectionNotes" id="SelectQuotationFormForm-selectionNotes" name="selectionNotes">
-								<a-input v-model:value="formData.selectionNotes" placeholder="请输入选定备注备注(selection notes)"  allow-clear ></a-input>
+								<a-input v-model:value="formData.selectionNotes" placeholder="请输入选定备注备注(selection notes)"  allow-clear AutoComplete="off"></a-input>
 							</a-form-item>
 						</a-col> 
             <a-col :span="12">

+ 4 - 4
src/views/purchase/selectionQuotationForm/selectionQuotationFormList.vue

@@ -7,7 +7,7 @@
           <a-col :lg="8">
               <a-form-item name="billCode">
                 <template #label><span title="选定单号(bill code)">选定单号(bill code)</span></template>
-                <a-input placeholder="" v-model:value="queryParam.billCode" allow-clear ></a-input>
+                <a-input placeholder="" v-model:value="queryParam.billCode" allow-clear AutoComplete="off"></a-input>
               </a-form-item>
           </a-col>
           <a-col :lg="8">
@@ -20,7 +20,7 @@
             <a-col :lg="8">
               <a-form-item name="inquiryProject">
                 <template #label><span title="询价项目(inquiry project)">询价项目(inquiry project)</span></template>
-                <a-input placeholder="询价项目(inquiry project)" v-model:value="queryParam.inquiryProject" allow-clear ></a-input>
+                <a-input placeholder="询价项目(inquiry project)" v-model:value="queryParam.inquiryProject" allow-clear AutoComplete="off" ></a-input>
               </a-form-item>
             </a-col>
             <a-col :lg="8">
@@ -44,13 +44,13 @@
             <a-col :lg="8">
               <a-form-item name="maker">
                 <template #label><span title="厂家(maker)">厂家(maker)</span></template>
-                <a-input placeholder="请输入厂家(maker)" v-model:value="queryParam.maker" allow-clear ></a-input>
+                <a-input placeholder="请输入厂家(maker)" v-model:value="queryParam.maker" allow-clear AutoComplete="off"></a-input>
               </a-form-item>
             </a-col>
             <a-col :lg="8">
               <a-form-item name="productionCode">
                 <template #label><span title="产品编号(production code)">产品编号(production code)</span></template>
-                <a-input placeholder="请输入" v-model:value="queryParam.productionCode" allow-clear ></a-input>
+                <a-input placeholder="请输入" v-model:value="queryParam.productionCode" allow-clear AutoComplete="off"></a-input>
               </a-form-item>
             </a-col>
             <a-col :lg="8">