|  | @@ -230,7 +230,7 @@
 | 
	
		
			
				|  |  |                  v-model="row.taxRate"
 | 
	
		
			
				|  |  |                  size="small"
 | 
	
		
			
				|  |  |                  oninput='this.value=this.value.replace(/[^(\d.)]/g,"").replace(/^(\d+)\.(\d\d).*$/, "$1.$2")'
 | 
	
		
			
				|  |  | -                @change="rateChange(row)"
 | 
	
		
			
				|  |  | +                @change="taxRateChange(row)"
 | 
	
		
			
				|  |  |                ></el-input>
 | 
	
		
			
				|  |  |                <span v-else>{{ row.taxRate | isPercentage }}</span>
 | 
	
		
			
				|  |  |              </template>
 | 
	
	
		
			
				|  | @@ -875,7 +875,7 @@ export default {
 | 
	
		
			
				|  |  |          row.amount = _.multiply(row.price, row.orderQuantity).toFixed(2);
 | 
	
		
			
				|  |  |        }
 | 
	
		
			
				|  |  |      },
 | 
	
		
			
				|  |  | -    rateChange(row) {
 | 
	
		
			
				|  |  | +    taxRateChange(row) {
 | 
	
		
			
				|  |  |        if (Number(row.taxRate) >= 100) {
 | 
	
		
			
				|  |  |          row.taxRate = 0;
 | 
	
		
			
				|  |  |          this.$message.error("税率不能超过100%");
 |