|  | @@ -552,8 +552,6 @@ export default {
 | 
	
		
			
				|  |  |  						this.$message.error('积分不能为空或为0');
 | 
	
		
			
				|  |  |  						return;
 | 
	
		
			
				|  |  |  					}
 | 
	
		
			
				|  |  | -					// self.rules_detail_form.min_point=self.rules_detail_form.min_point2;
 | 
	
		
			
				|  |  | -					// self.rules_detail_form.max_point=self.rules_detail_form.max_point2;
 | 
	
		
			
				|  |  |  					if (self.integral_select_name1 != '1' && self.rules_detail_form.min_point >= 0) {
 | 
	
		
			
				|  |  |  						self.rules_detail_form.min_point = '-' + self.rules_detail_form.min_point;
 | 
	
		
			
				|  |  |  					}
 | 
	
	
		
			
				|  | @@ -722,7 +720,7 @@ export default {
 | 
	
		
			
				|  |  |  		del_rule() {
 | 
	
		
			
				|  |  |  			let self = this;
 | 
	
		
			
				|  |  |  			let data = {
 | 
	
		
			
				|  |  | -				item_id: [this.rules_detail_form.id]
 | 
	
		
			
				|  |  | +				item_ids:JSON.stringify([this.rules_detail_form.id])
 | 
	
		
			
				|  |  |  			};
 | 
	
		
			
				|  |  |  			this.delRule_loading = true;
 | 
	
		
			
				|  |  |  			self.$confirm('此操作将永久删除该选项, 是否继续?', '提示').then(
 | 
	
	
		
			
				|  | @@ -790,7 +788,7 @@ export default {
 | 
	
		
			
				|  |  |  				type: 'warning'
 | 
	
		
			
				|  |  |  			}).then(() => {
 | 
	
		
			
				|  |  |  				let data = {
 | 
	
		
			
				|  |  | -					item_id: this.del_item_id
 | 
	
		
			
				|  |  | +					item_ids: JSON.stringify(this.del_item_id)
 | 
	
		
			
				|  |  |  				};
 | 
	
		
			
				|  |  |  				this.$axios('post', '/api/integral/rule/items/destroy', data).then(res => {
 | 
	
		
			
				|  |  |  					if (res.data.code == 1) {
 |