| 
					
				 | 
			
			
				@@ -12,27 +12,34 @@ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				       <a-form-model 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         id="replenishmentManagement-outWarehousing-form" 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         ref="ruleForm" 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-        layout="inline" 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         :model="form" 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         :rules="rules" 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         style="margin-bottom: 10px;" > 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         <a-row :gutter="15"> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-          <a-col :md="12" :sm="24"> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-            <a-form-model-item label="补货单号">{{ basicInfoData && basicInfoData.replenishBillNo || '--' }}</a-form-model-item> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+          <a-col :span="12"> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+            <a-form-model-item style="margin-bottom: 0;" label="补货单号" :labelCol="{ span: 6}" :wrapperCol="{ span: 16 }">{{ basicInfoData && basicInfoData.replenishBillNo || '--' }}</a-form-model-item> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				           </a-col> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-          <a-col :md="12" :sm="24"> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-            <a-form-model-item label="创建时间">{{ basicInfoData && basicInfoData.createDate || '--' }}</a-form-model-item> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+          <a-col :span="12"> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+            <a-form-model-item style="margin-bottom: 0;" label="创建时间" :labelCol="{ span: 6}" :wrapperCol="{ span: 16 }">{{ basicInfoData && basicInfoData.createDate || '--' }}</a-form-model-item> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				           </a-col> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-          <!-- <a-col :md="12" :sm="24"> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+          <!-- <a-col :span="12"> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             <a-form-model-item label="配送方式" prop="dispatchType" style="margin: 0;"> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				               <a-radio-group v-model="form.dispatchType"> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				                 <a-radio v-for="(item,index) in dispatchTypeList" :key="index" :value="item.code">{{ item.dispName }}</a-radio> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				               </a-radio-group> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             </a-form-model-item> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				           </a-col> --> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-          <a-col :md="24" :sm="24"> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-            <a-form-model-item label="出库备注"> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-              <a-input id="replenishmentManagement-outWarehousing-remarks" :maxLength="100" v-model.trim="form.remarks" allowClear placeholder="请输入出库备注(最多100字符)"/> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        </a-row> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        <a-row :gutter="15"> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+          <a-col :span="24"> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+            <a-form-model-item style="margin-bottom: 0;" label="出库备注" :labelCol="{ span: 3 }" :wrapperCol="{ span: 20 }"> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+              <a-input 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                type="textarea" 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                id="replenishmentManagement-outWarehousing-remarks" 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                :maxLength="100" 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                v-model.trim="form.remarks" 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                allowClear 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                placeholder="请输入出库备注(最多100字符)"/> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             </a-form-model-item> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				           </a-col> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         </a-row> 
			 |