|  | @@ -181,13 +181,40 @@ export default {
 | 
	
		
			
				|  |  |          },
 | 
	
		
			
				|  |  |          {
 | 
	
		
			
				|  |  |            label: '来源单号',
 | 
	
		
			
				|  |  | -          disabled: false,
 | 
	
		
			
				|  |  |            prop: "ordNo",
 | 
	
		
			
				|  |  |            disabled: true
 | 
	
		
			
				|  |  |          },
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +          {
 | 
	
		
			
				|  |  | +            label: '配送方式',
 | 
	
		
			
				|  |  | +            prop: "shipType",
 | 
	
		
			
				|  |  | +            type: 'select',
 | 
	
		
			
				|  |  | +            disabled: false,
 | 
	
		
			
				|  |  | +            props: {
 | 
	
		
			
				|  |  | +              label: 'dictValue',
 | 
	
		
			
				|  |  | +              value: 'dictKey'
 | 
	
		
			
				|  |  | +            },
 | 
	
		
			
				|  |  | +            dicUrl: '/api/blade-system/dict-biz/dictionary?code=deliveryMethod'
 | 
	
		
			
				|  |  | +          },
 | 
	
		
			
				|  |  | +          {
 | 
	
		
			
				|  |  | +            label: '货运公司',
 | 
	
		
			
				|  |  | +            prop: "logisticsCorpName",
 | 
	
		
			
				|  |  | +            type: 'select',
 | 
	
		
			
				|  |  | +            disabled: false,
 | 
	
		
			
				|  |  | +            props: {
 | 
	
		
			
				|  |  | +              label: 'dictValue',
 | 
	
		
			
				|  |  | +              value: 'dictKey'
 | 
	
		
			
				|  |  | +            },
 | 
	
		
			
				|  |  | +            dicUrl: '/api/blade-system/dict-biz/dictionary?code=tyre_express_company'
 | 
	
		
			
				|  |  | +          },
 | 
	
		
			
				|  |  | +          {
 | 
	
		
			
				|  |  | +            label: '货运单号',
 | 
	
		
			
				|  |  | +            prop: "expressNo",
 | 
	
		
			
				|  |  | +            disabled: false
 | 
	
		
			
				|  |  | +          },
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  |          {
 | 
	
		
			
				|  |  |            label: '订单数量',
 | 
	
		
			
				|  |  | -          disabled: false,
 | 
	
		
			
				|  |  |            prop: "goodsTotalNum",
 | 
	
		
			
				|  |  |            disabled: true,
 | 
	
		
			
				|  |  |            rules: [
 | 
	
	
		
			
				|  | @@ -200,7 +227,6 @@ export default {
 | 
	
		
			
				|  |  |          },
 | 
	
		
			
				|  |  |          {
 | 
	
		
			
				|  |  |            label: '出库数量',
 | 
	
		
			
				|  |  | -          disabled: false,
 | 
	
		
			
				|  |  |            prop: "sendTotalNum",
 | 
	
		
			
				|  |  |            disabled: true,
 | 
	
		
			
				|  |  |          },
 | 
	
	
		
			
				|  | @@ -640,7 +666,13 @@ export default {
 | 
	
		
			
				|  |  |          this.isSave = false
 | 
	
		
			
				|  |  |          this.$set(this.optionForm, 'disabled', false)
 | 
	
		
			
				|  |  |          this.optionForm.column.forEach(item => {
 | 
	
		
			
				|  |  | -          if (item.prop == 'storageId' || item.prop == 'remarks' || item.prop == 'createTime' || item.prop == 'stockClerkId') {
 | 
	
		
			
				|  |  | +          if (item.prop == 'storageId'
 | 
	
		
			
				|  |  | +            || item.prop == 'remarks'
 | 
	
		
			
				|  |  | +            || item.prop == 'createTime'
 | 
	
		
			
				|  |  | +            || item.prop == 'stockClerkId'
 | 
	
		
			
				|  |  | +            || item.prop == 'shipType'
 | 
	
		
			
				|  |  | +            || item.prop == 'logisticsCorpName'
 | 
	
		
			
				|  |  | +            || item.prop == 'expressNo') {
 | 
	
		
			
				|  |  |              item.disabled = false
 | 
	
		
			
				|  |  |            } else {
 | 
	
		
			
				|  |  |              item.disabled = true
 |