|  | @@ -105,7 +105,7 @@ export default {
 | 
	
		
			
				|  |  |            objInfo.terminalPrice = (res.data.terminalPrice || res.data.terminalPrice == 0) ? _this.toThousands(res.data.terminalPrice) : ''
 | 
	
		
			
				|  |  |            objInfo.carOwnersPrice = (res.data.carOwnersPrice || res.data.carOwnersPrice == 0) ? _this.toThousands(res.data.carOwnersPrice) : ''
 | 
	
		
			
				|  |  |            objInfo.dealerProductPrice = {}
 | 
	
		
			
				|  |  | -          Object.assign(objInfo.dealerProductPrice, { terminalPrice: res.data.dealerProductPrice && res.data.dealerProductPrice.terminalPrice || '', carOwnersPrice: res.data.dealerProductPrice && res.data.dealerProductPrice.carOwnersPrice || '' })
 | 
	
		
			
				|  |  | +          Object.assign(objInfo.dealerProductPrice, { terminalPrice: res.data.dealerProductPrice && (res.data.dealerProductPrice.terminalPrice || res.data.dealerProductPrice.terminalPrice == 0) ? res.data.dealerProductPrice.terminalPrice : '', carOwnersPrice: res.data.dealerProductPrice && (res.data.dealerProductPrice.carOwnersPrice || res.data.dealerProductPrice.carOwnersPrice == 0) ? res.data.dealerProductPrice.carOwnersPrice : '' })
 | 
	
		
			
				|  |  |            _this.form = objInfo
 | 
	
		
			
				|  |  |          }
 | 
	
		
			
				|  |  |        })
 | 
	
	
		
			
				|  | @@ -118,7 +118,7 @@ export default {
 | 
	
		
			
				|  |  |        const ajaxData = {}
 | 
	
		
			
				|  |  |        ajaxData.productSn = this.itemId
 | 
	
		
			
				|  |  |        ajaxData.dealerProductPrice = {}
 | 
	
		
			
				|  |  | -      Object.assign(ajaxData.dealerProductPrice, this.form.dealerProductPrice)
 | 
	
		
			
				|  |  | +      Object.assign(ajaxData.dealerProductPrice, _this.form.dealerProductPrice)
 | 
	
		
			
				|  |  |        settingPrice(ajaxData).then(res => {
 | 
	
		
			
				|  |  |          if (res.status == 200) {
 | 
	
		
			
				|  |  |            _this.$message.success(res.message)
 |