|  | @@ -338,6 +338,7 @@
 | 
	
		
			
				|  |  |              <el-select class="multiple"
 | 
	
		
			
				|  |  |                         style="width: 100% !important;"
 | 
	
		
			
				|  |  |                         v-model.trim="form.applyType"
 | 
	
		
			
				|  |  | +                       @change="changeApplyType"
 | 
	
		
			
				|  |  |                         filterable
 | 
	
		
			
				|  |  |                         clearable
 | 
	
		
			
				|  |  |                         :disabled="!isAdd"
 | 
	
	
		
			
				|  | @@ -869,7 +870,7 @@ export default {
 | 
	
		
			
				|  |  |              this.form = {
 | 
	
		
			
				|  |  |                routeOrganId: orderInfo.organId,
 | 
	
		
			
				|  |  |                transNo: orderInfo.transNo,
 | 
	
		
			
				|  |  | -              userId: orderInfo.userId,
 | 
	
		
			
				|  |  | +              userId: orderInfo.userId ? orderInfo.userId : '',
 | 
	
		
			
				|  |  |                type: "OTHER",
 | 
	
		
			
				|  |  |                merNo: orderInfo.merNos,
 | 
	
		
			
				|  |  |                actualAmount: orderInfo.actualAmount,
 | 
	
	
		
			
				|  | @@ -881,7 +882,6 @@ export default {
 | 
	
		
			
				|  |  |                applyType: 'SELL'
 | 
	
		
			
				|  |  |              },
 | 
	
		
			
				|  |  |                this.$set(this.form, 'goodsList', res.data.sellOrders.map(item => { return { id: item.goodsId, number: item.num } }))
 | 
	
		
			
				|  |  | -            console.log(this.form)
 | 
	
		
			
				|  |  |              this.routeOrderStatus = true
 | 
	
		
			
				|  |  |            })
 | 
	
		
			
				|  |  |          }
 | 
	
	
		
			
				|  | @@ -956,6 +956,9 @@ export default {
 | 
	
		
			
				|  |  |          newStr += `<p>${item}</p>`
 | 
	
		
			
				|  |  |        })
 | 
	
		
			
				|  |  |        return newStr
 | 
	
		
			
				|  |  | +    }, changeApplyType (val) {
 | 
	
		
			
				|  |  | +      this.form.serviceAmount = null
 | 
	
		
			
				|  |  | +      this.form.saleAmount = null
 | 
	
		
			
				|  |  |      }
 | 
	
		
			
				|  |  |    }
 | 
	
		
			
				|  |  |  };
 |